Fix non-strict isMovie check

This commit is contained in:
Reinhard Pointner 2016-08-24 03:25:50 +08:00
parent 8464020de4
commit d5cf630fe5
1 changed files with 1 additions and 1 deletions

View File

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