We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05fc44 commit 9eb5a5dCopy full SHA for 9eb5a5d
1 file changed
tika-app/src/main/java/org/apache/tika/gui/TikaGUI.java
@@ -613,9 +613,9 @@ private ImageSavingParser(Parser downstreamParser) {
613
public File requestSave(String embeddedName) throws IOException {
614
String suffix = ".tika";
615
616
- int splitAt = ebeddedNamem.lastIndexOf('.');
+ int splitAt = embeddedName.lastIndexOf('.');
617
if (splitAt > 0) {
618
- ebeddedName = embeddedName.substring(splitAt);
+ embeddedName = embeddedName.substring(splitAt);
619
}
620
621
File tmp = Files
0 commit comments