* more strict season pattern matching

This commit is contained in:
Reinhard Pointner 2013-04-19 09:19:49 +00:00
parent 03013e49a3
commit 50a917d645
1 changed files with 1 additions and 2 deletions

View File

@ -91,7 +91,7 @@ public class SeasonEpisodeMatcher {
} }
// season folder pattern for complementing partial sxe info from filename // 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 match;
} }
} }
return null; return null;
} }