mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
* exclude obviously invalid "movie folders"
This commit is contained in:
parent
7702844976
commit
87c6648a03
@ -629,7 +629,10 @@ public class MediaDetection {
|
||||
}
|
||||
}
|
||||
|
||||
return movieFile.getParentFile();
|
||||
if (stripReleaseInfo(f.getParentFile().getName()).length() > 0) {
|
||||
return f.getParentFile();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user