* allow grouping by absolute SxE patterns of the path not just the filename
This commit is contained in:
parent
6f27ff37a8
commit
450e65dc0c
|
@ -167,7 +167,7 @@ public class MediaDetection {
|
||||||
// divide file set per complete series set
|
// divide file set per complete series set
|
||||||
Map<Object, List<File>> filesByEpisode = new LinkedHashMap<Object, List<File>>();
|
Map<Object, List<File>> filesByEpisode = new LinkedHashMap<Object, List<File>>();
|
||||||
for (File file : combinedFileSet) {
|
for (File file : combinedFileSet) {
|
||||||
Object eid = getEpisodeIdentifier(file.getName(), true);
|
Object eid = getEpisodeIdentifier(file.getPath(), true);
|
||||||
|
|
||||||
// merge specials into first SxE group
|
// merge specials into first SxE group
|
||||||
if (eid == null) {
|
if (eid == null) {
|
||||||
|
|
Loading…
Reference in New Issue