Fixed: Another hashed release format

This commit is contained in:
Mark McDowall 2015-01-09 21:59:06 -08:00
parent 8caa6676e7
commit c29397aa2c
2 changed files with 10 additions and 0 deletions

View File

@ -66,6 +66,13 @@ namespace NzbDrone.Core.Test.ParserTests
"grimm",
Quality.WEBDL720p,
"ECI"
},
new object[]
{
@"C:\Test\Grimm S04E08 Chupacabra 720p WEB-DL DD5 1 H 264-ECI\b00bs.mkv".AsOsAgnostic(),
"grimm",
Quality.WEBDL720p,
"ECI"
}
};

View File

@ -138,6 +138,9 @@ namespace NzbDrone.Core.Parser
new Regex(@"^123$", RegexOptions.Compiled),
//abc - Started appearing January 2015
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase),
//b00bs - Started appearing January 2015
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
};