Set the base url correctly when it's stored in the settings

pull/4072/head
tidusjar 4 years ago
parent 66aac001e7
commit 3d7a048654

@ -240,6 +240,12 @@ namespace Ombi
}
});
}
else
{
// The base url might have changed in the settings, so just rewrite
setBaseUrl = true;
baseUrl = ombiSettings.BaseUrl.HasValue() ? ombiSettings.BaseUrl : string.Empty;
}
if (setBaseUrl)

Loading…
Cancel
Save