1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed hashed release name

This commit is contained in:
Mark McDowall 2015-01-21 14:48:35 -08:00
parent 5f9b05d34a
commit a11d118e32

View File

@ -141,7 +141,7 @@ public static class Parser
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase),
//b00bs - Started appearing January 2015
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
new Regex(@"^b00bs$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
};
//Regex to detect whether the title was reversed.
@ -691,4 +691,4 @@ private static string GetReleaseHash(MatchCollection matchCollection)
return String.Empty;
}
}
}
}