1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-02 08:25:02 -04:00

* make sure normal File instances are used when renaming (not types like FastFile that cache fs operations)

This commit is contained in:
Reinhard Pointner 2012-02-26 12:29:42 +00:00
parent 12aa612bd4
commit 374206480e

View File

@ -85,7 +85,7 @@ public class RenameModel extends MatchModel<Object, File> {
for (int i = 0; i < names.size(); i++) {
if (hasComplement(i)) {
File originalFile = files().get(i);
File originalFile = new File(files().get(i).getAbsolutePath());
FormattedFuture formattedFuture = names.get(i);
StringBuilder nameBuilder = new StringBuilder();