1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

* fix virtual path getName (filename without extension) logic

This commit is contained in:
Reinhard Pointner 2015-03-25 22:28:20 +00:00
parent e894621e0b
commit 375c5eea58

View File

@ -21,7 +21,7 @@ public class SimpleFileInfo implements FileInfo, Comparable<FileInfo> {
}
public String getName() {
return getNameWithoutExtension(path);
return getNameWithoutExtension(new File(path).getName());
}
@Override