diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs index 7c5e49b9c..21e5f736d 100644 --- a/NzbDrone.Core/Parser.cs +++ b/NzbDrone.Core/Parser.cs @@ -381,6 +381,7 @@ namespace NzbDrone.Core /// public static string NormalizeTitle(string title) { + //Todo: Find a better way to do this hack if (title == "90210" || title == "24") return title; return NormalizeRegex.Replace(title, String.Empty).ToLower();