From c747618d9a458b6b4fa500c85c35261672eab123 Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 1 Nov 2021 09:11:32 -0400 Subject: [PATCH] When externals services are disabled, only disable UILoginBackgroundURL if it is not set by the user --- conf/configuration.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/conf/configuration.go b/conf/configuration.go index 365ebbf46..9cb7920cb 100644 --- a/conf/configuration.go +++ b/conf/configuration.go @@ -164,7 +164,9 @@ func disableExternalServices() { log.Info("All external integrations are DISABLED!") Server.LastFM.Enabled = false Server.Spotify.ID = "" - Server.UILoginBackgroundURL = consts.DefaultUILoginBackgroundURLOffline + if Server.UILoginBackgroundURL == consts.DefaultUILoginBackgroundURL { + Server.UILoginBackgroundURL = consts.DefaultUILoginBackgroundURLOffline + } Server.DevListenBrainzEnabled = false }