account for {n}/{s00e00} folder structure (e.g. Firefly/S01E01 - Pilot)
This commit is contained in:
parent
9c1b19d43f
commit
892e56a246
|
@ -448,6 +448,11 @@ public class MediaDetection {
|
|||
queries.add(sn);
|
||||
break;
|
||||
}
|
||||
|
||||
// account for {n}/{s00e00} folder structure (e.g. Firefly/S01E01 - Pilot)
|
||||
if (sn == null && path.isDirectory()) {
|
||||
queries.addAll(stripBlacklistedTerms(stripReleaseInfo(singleton(path.getName()), true)));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue