Extended the horizon from 3 levels to 4 levels

This commit is contained in:
Reinhard Pointner 2017-04-21 21:14:16 +08:00
parent 392099ad9b
commit 91b0074e70
1 changed files with 2 additions and 2 deletions

View File

@ -798,10 +798,10 @@ public class MediaDetection {
} }
} }
// first parent folder that matches a movie (max 3 levels deep) // first parent folder that matches a movie (max 4 levels deep)
for (boolean strictness : new boolean[] { true, false }) { for (boolean strictness : new boolean[] { true, false }) {
File f = movieFile.getParentFile(); File f = movieFile.getParentFile();
for (int i = 0; f != null && i < 3 && !isStructureRoot(f); f = f.getParentFile(), i++) { for (int i = 0; f != null && i < 4 && !isStructureRoot(f); f = f.getParentFile(), i++) {
String term = stripReleaseInfo(f.getName()); String term = stripReleaseInfo(f.getName());
if (term.length() > 0 && checkMovie(f, strictness) != null) { if (term.length() > 0 && checkMovie(f, strictness) != null) {
return f; return f;