* 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