From d28c8069037f0ac95c4813ec637c1bbdcd2afc1b Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Tue, 26 May 2026 22:39:52 +0200 Subject: [PATCH] fix(install): clear default Spotify redirect URI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hardcoded default 'ueberboese-login://' scheme was a leftover from an earlier Spotify callback flow that no longer applies. An empty default is correct — the value is set by the user during installation if they want Spotify support. Co-Authored-By: Claude Sonnet 4.6 --- scripts/raspberry-pi/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/raspberry-pi/install.sh b/scripts/raspberry-pi/install.sh index f1a10a9..347f7a6 100644 --- a/scripts/raspberry-pi/install.sh +++ b/scripts/raspberry-pi/install.sh @@ -61,7 +61,7 @@ DISCOVERY_INTERVAL="${DISCOVERY_INTERVAL:-5m}" # Spotify OAuth config (optional) SPOTIFY_CLIENT_ID="${SPOTIFY_CLIENT_ID:-}" SPOTIFY_CLIENT_SECRET="${SPOTIFY_CLIENT_SECRET:-}" -SPOTIFY_REDIRECT_URI="${SPOTIFY_REDIRECT_URI:-ueberboese-login://spotify}" +SPOTIFY_REDIRECT_URI="${SPOTIFY_REDIRECT_URI:-}" # Management API credentials MGMT_USERNAME="${MGMT_USERNAME:-admin}"