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

Fix non-strict isMovie check

This commit is contained in:
Reinhard Pointner 2016-08-24 03:25:50 +08:00
parent 8464020de4
commit d5cf630fe5

View File

@ -136,7 +136,7 @@ public class MediaDetection {
return metaInfo instanceof Movie;
}
if (isEpisode(file, strict)) {
if (isEpisode(file, true)) {
return false;
}