Fixed: Another hashed release format

pull/4/head
Mark McDowall 10 years ago
parent 8caa6676e7
commit c29397aa2c

@ -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"
}
};

@ -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)
};

Loading…
Cancel
Save