Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/3e87418c5d87a6419d96d92598c36268ed071c66?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

NormalizeTitle will return all number only titles as is.

pull/2/head
Mark McDowall 14 years ago
parent 66522b8109
commit 3e87418c5d

@ -396,9 +396,12 @@ namespace NzbDrone.Core
/// <returns></returns>
public static string NormalizeTitle(string title)
{
//Todo: Find a better way to do this hack
if (title == "90210" || title == "24")
long number = 0;
//If Title only contains numbers return it as is.
if (Int64.TryParse(title, out number))
return title;
return NormalizeRegex.Replace(title, String.Empty).ToLower();
}

Loading…
Cancel
Save