Fixed: Removed TrollHD from the RawHD detection regex since they now also release other sources.

fixes #1193
This commit is contained in:
Taloth Saldono
2016-03-26 20:44:46 +01:00
parent da0bdc5750
commit 3f74a87b45
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ namespace NzbDrone.Core.Parser
)\b",
RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.IgnorePatternWhitespace);
private static readonly Regex RawHDRegex = new Regex(@"\b(?<rawhd>TrollHD|RawHD|1080i[-_. ]HDTV|Raw[-_. ]HD|MPEG[-_. ]?2)\b",
private static readonly Regex RawHDRegex = new Regex(@"\b(?<rawhd>RawHD|1080i[-_. ]HDTV|Raw[-_. ]HD|MPEG[-_. ]?2)\b",
RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex ProperRegex = new Regex(@"\b(?<proper>proper|repack|rerip)\b",