* allow grouping by absolute SxE patterns of the path not just the filename

This commit is contained in:
Reinhard Pointner 2013-01-17 06:11:54 +00:00
parent 6f27ff37a8
commit 450e65dc0c
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public class MediaDetection {
// divide file set per complete series set
Map<Object, List<File>> filesByEpisode = new LinkedHashMap<Object, List<File>>();
for (File file : combinedFileSet) {
Object eid = getEpisodeIdentifier(file.getName(), true);
Object eid = getEpisodeIdentifier(file.getPath(), true);
// merge specials into first SxE group
if (eid == null) {