mirror of
https://github.com/RatzzFatzz/MKVAudioSubtitleChanger.git
synced 2026-02-11 02:05:56 +01:00
Expand date filter by last execution overwrite
This commit is contained in:
@@ -48,10 +48,10 @@ public class FileFilter {
|
||||
}
|
||||
|
||||
private static boolean isNewerThanLastExecution(File pathName) {
|
||||
if (Config.getInstance().isOnlyNewFiles()) {
|
||||
return isNewer(pathName);
|
||||
}
|
||||
return true;
|
||||
// return Config.getInstance().isOnlyNewFiles() && isNewer(pathName);
|
||||
// if (Config.getInstance().isOnlyNewFiles()) {
|
||||
// return isNewer(pathName);
|
||||
// }
|
||||
// return true;
|
||||
return !Config.getInstance().isOnlyNewFiles() || isNewer(pathName);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user