* exclude obviously invalid "movie folders"

This commit is contained in:
Reinhard Pointner 2013-04-01 14:56:36 +00:00
parent 7702844976
commit 87c6648a03
1 changed files with 4 additions and 1 deletions

View File

@ -629,7 +629,10 @@ public class MediaDetection {
}
}
return movieFile.getParentFile();
if (stripReleaseInfo(f.getParentFile().getName()).length() > 0) {
return f.getParentFile();
}
return null;
}