mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-16 14:25:02 -05:00
Fix NPE bug
This commit is contained in:
parent
18ce7c0096
commit
f1bf5e798f
@ -84,7 +84,7 @@ public class Preset {
|
||||
}
|
||||
}
|
||||
|
||||
return listFiles(getInputFolder(), f -> f.isFile() && filter.accept(f), HUMAN_NAME_ORDER);
|
||||
return listFiles(getInputFolder(), filter == null ? FILES : filter, HUMAN_NAME_ORDER);
|
||||
}
|
||||
|
||||
public AutoCompleteMatcher getAutoCompleteMatcher() {
|
||||
|
Loading…
Reference in New Issue
Block a user