From b2acec0a09787d590967c8bc20fe2a3c8e65748c 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 aa1b1a146..9f33472f0 100644 --- a/conf/configuration.go +++ b/conf/configuration.go @@ -153,7 +153,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 }