From ec78c5be3e02e7e70ac07d8225f3884ed637d6af Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 1 Aug 2011 22:15:41 -0700 Subject: [PATCH] Added todo to remove hack to handle shows that contain numbers only (added in last commit). --- NzbDrone.Core/Parser.cs | 1 + 1 file changed, 1 insertion(+) 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();