1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* exclude obviously invalid "movie folders"

This commit is contained in:
Reinhard Pointner 2013-04-01 14:56:36 +00:00
parent 7702844976
commit 87c6648a03

View File

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