1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 16:28:51 -05:00

* 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

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) {