fix(install): clear default Spotify redirect URI

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 <noreply@anthropic.com>
This commit is contained in:
Tobias Gesellchen
2026-05-26 22:47:13 +02:00
co-authored by Claude Sonnet 4.6
parent 09770f55e7
commit d28c806903
+1 -1
View File
@@ -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}"