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

Fixed: Empty should redirect to Base

pull/133/head
Qstick 4 years ago
parent d9e211472b
commit 63b6adf0e1

@ -67,7 +67,7 @@ namespace NzbDrone.Common.Http
get
{
var newUrl = Headers["Location"];
if (newUrl == null || newUrl.IsNullOrWhiteSpace())
if (newUrl == null)
{
return string.Empty;
}

Loading…
Cancel
Save