Fixed: Another hashed release format
This commit is contained in:
parent
8caa6676e7
commit
c29397aa2c
|
@ -66,6 +66,13 @@ namespace NzbDrone.Core.Test.ParserTests
|
||||||
"grimm",
|
"grimm",
|
||||||
Quality.WEBDL720p,
|
Quality.WEBDL720p,
|
||||||
"ECI"
|
"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),
|
new Regex(@"^123$", RegexOptions.Compiled),
|
||||||
|
|
||||||
//abc - Started appearing January 2015
|
//abc - Started appearing January 2015
|
||||||
|
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase),
|
||||||
|
|
||||||
|
//b00bs - Started appearing January 2015
|
||||||
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
|
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue