|
|
@ -381,6 +381,7 @@ namespace NzbDrone.Core
|
|
|
|
/// <returns></returns>
|
|
|
|
/// <returns></returns>
|
|
|
|
public static string NormalizeTitle(string title)
|
|
|
|
public static string NormalizeTitle(string title)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
//Todo: Find a better way to do this hack
|
|
|
|
if (title == "90210" || title == "24")
|
|
|
|
if (title == "90210" || title == "24")
|
|
|
|
return title;
|
|
|
|
return title;
|
|
|
|
return NormalizeRegex.Replace(title, String.Empty).ToLower();
|
|
|
|
return NormalizeRegex.Replace(title, String.Empty).ToLower();
|
|
|
|