1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-20 14:19:46 +00:00

Fixed: Trimming slashes from UrlBase when using environment variable

This commit is contained in:
Bogdan 2024-05-18 19:05:24 +03:00 committed by Mark McDowall
parent cc5b5463f2
commit d7ceb11a64

View file

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