diff --git a/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs b/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs index 051902b..e3a7b35 100644 --- a/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs +++ b/allstarr/Services/Spotify/SpotifyPlaylistFetcher.cs @@ -233,18 +233,8 @@ public class SpotifyPlaylistFetcher : BackgroundService return; } - // Try to get user info (may fail even with valid token due to scope limitations) - var (gotUser, userId, displayName) = await _spotifyClient.GetCurrentUserAsync(stoppingToken); - _logger.LogInformation("Spotify API ENABLED"); - if (gotUser) - { - _logger.LogInformation("Authenticated as: {DisplayName} ({UserId})", displayName, userId); - } - else - { - _logger.LogInformation("Authenticated (user profile not accessible, but token is valid)"); - } + _logger.LogInformation("Authenticated via sp_dc session cookie"); _logger.LogInformation("Cache duration: {Minutes} minutes", _spotifyApiSettings.CacheDurationMinutes); _logger.LogInformation("ISRC matching: {Enabled}", _spotifyApiSettings.PreferIsrcMatching ? "enabled" : "disabled"); _logger.LogInformation("Configured Playlists: {Count}", _spotifyImportSettings.Playlists.Count);