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

Fixed: Trimming slashes from UrlBase when using environment variable

pull/2136/head
Bogdan 11 months ago
parent a4257cbcde
commit 948fe0a6dc

@ -245,7 +245,7 @@ namespace NzbDrone.Core.Configuration
{
get
{
var urlBase = _serverOptions.UrlBase ?? GetValue("UrlBase", "").Trim('/');
var urlBase = (_serverOptions.UrlBase ?? GetValue("UrlBase", "")).Trim('/');
if (urlBase.IsNullOrWhiteSpace())
{

Loading…
Cancel
Save