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

Merge pull request from geogolem/fixIMDBNormalization

incorrect check for imdbId prefix
pull/2/head
geogolem 8 years ago committed by GitHub
commit ae0fc019e5

@ -603,7 +603,7 @@ namespace NzbDrone.Core.Parser
{
if (imdbId.Length > 2)
{
return (imdbId.Substring(2) != "tt" ? $"tt{imdbId}" : imdbId);
return (imdbId.Substring(0,2) != "tt" ? $"tt{imdbId}" : imdbId);
}
return null;

Loading…
Cancel
Save