mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
* fix -get-missing-subtitles issue if user already has multiple subtitles in multiple languages
This commit is contained in:
parent
49b49b80b7
commit
d53de9b922
@ -757,6 +757,7 @@ public class CmdlineOperations implements CmdlineInterface {
|
||||
cache.put(video.getParentFile(), subtitlesByFolder);
|
||||
}
|
||||
|
||||
boolean accept = true;
|
||||
for (File subtitle : subtitlesByFolder) {
|
||||
// can't tell which subtitle belongs to which file -> if any subtitles exist skip the whole folder
|
||||
if (naming == SubtitleNaming.ORIGINAL) {
|
||||
@ -765,11 +766,11 @@ public class CmdlineOperations implements CmdlineInterface {
|
||||
if (naming == SubtitleNaming.MATCH_VIDEO) {
|
||||
return false;
|
||||
} else {
|
||||
return !matchesLanguageCode(subtitle);
|
||||
accept &= !matchesLanguageCode(subtitle);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
return accept;
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user