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

Fixed: Trimming slashes from UrlBase when using environment variable

(cherry picked from commit d7ceb11a64c3926f35aabf67c935680cf031bd0e)
pull/10043/head
Bogdan 11 months ago
parent 638f92495c
commit 320bfeec16

@ -241,7 +241,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