Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/ec78c5be3e02e7e70ac07d8225f3884ed637d6af You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added todo to remove hack to handle shows that contain numbers only (added in last commit).

pull/7/merge
Mark McDowall 14 years ago
parent 35abb74993
commit ec78c5be3e

@ -381,6 +381,7 @@ 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")
return title;
return NormalizeRegex.Replace(title, String.Empty).ToLower();

Loading…
Cancel
Save