Fixed broken Season parsing REGEX, added test to verify issue without parsing XML.

This commit is contained in:
Mark McDowall 2011-09-19 21:29:04 -07:00
commit 43fa8a1f66
2 changed files with 2 additions and 1 deletions

View file

@ -44,7 +44,7 @@ namespace NzbDrone.Core
RegexOptions.IgnoreCase | RegexOptions.Compiled),
//Supports Season only releases
new Regex(@"^(?<title>.+?)\W(?:S|Season)\W?(?<season>\d{1,2}(?!\d+))\W(?<extras>EXTRAS)?(?!\\)",
new Regex(@"^(?<title>.+?)\W(?:S|Season)\W?(?<season>\d{1,2}(?!\d+))\W?(?<extras>EXTRAS)?(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled)
};