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

AppPath tweak

pull/2/head
Mark McDowall 13 years ago
parent 5017c16848
commit e7816d7e7f

@ -69,7 +69,7 @@ namespace NzbDrone.Common
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
applicationPath = CrawlToRoot(StartUpPath);
applicationPath = CrawlToRoot(AppDomain.CurrentDomain.BaseDirectory);
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
@ -77,7 +77,7 @@ namespace NzbDrone.Common
if (!string.IsNullOrWhiteSpace(applicationPath))
return applicationPath;
throw new ApplicationException("Can't fine IISExpress folder.");
throw new ApplicationException("Can't finds IISExpress folder.");
}
}

Loading…
Cancel
Save