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

Merge pull request from fedoranimus/develop

Harden parsing of imported movie titles
Tim Turner 8 years ago committed by GitHub
commit 00d4bfd712

@ -192,9 +192,12 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
private string StripTrailingTheFromTitle(string title)
{
if(title.EndsWith(", the") || title.EndsWith(",the"))
if(title.EndsWith(",the"))
{
title = title.Substring(title.Length - 4);
} else if(title.EndsWith(", the"))
{
title = title.Substring(title.Length - 5);
}
return title;
}

Loading…
Cancel
Save