1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 12:34:40 +00:00

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 @@ public class HashedReleaseFixture : CoreTest
"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 @@ public static class 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)
};