1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-02 08:25:02 -04:00

* more strict season pattern matching

This commit is contained in:
Reinhard Pointner 2013-04-19 09:19:49 +00:00
parent 03013e49a3
commit 50a917d645

View File

@ -91,7 +91,7 @@ public class SeasonEpisodeMatcher {
}
// season folder pattern for complementing partial sxe info from filename
seasonPattern = compile("Season\\D?(\\d{1,2})", CASE_INSENSITIVE | UNICODE_CASE);
seasonPattern = compile("Season[-._ ]?(\\d{1,2})", CASE_INSENSITIVE | UNICODE_CASE);
}
@ -132,7 +132,6 @@ public class SeasonEpisodeMatcher {
return match;
}
}
return null;
}