From b2c28d10f12e7cdd20c3611ea9767bdb9baf05d4 Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Tue, 3 Feb 2026 14:29:39 -0500 Subject: [PATCH] Fix TOTP secrets URL - use correct xyloflake/spot-secrets-go repo --- allstarr/Services/Spotify/SpotifyApiClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allstarr/Services/Spotify/SpotifyApiClient.cs b/allstarr/Services/Spotify/SpotifyApiClient.cs index 245af2d..0af1dad 100644 --- a/allstarr/Services/Spotify/SpotifyApiClient.cs +++ b/allstarr/Services/Spotify/SpotifyApiClient.cs @@ -37,7 +37,7 @@ public class SpotifyApiClient : IDisposable private const string TokenEndpoint = "https://open.spotify.com/api/token"; // URL for pre-scraped TOTP secrets (same as Jellyfin plugin uses) - private const string TotpSecretsUrl = "https://raw.githubusercontent.com/Viperinius/spotify-totp-secrets/refs/heads/main/secrets.json"; + private const string TotpSecretsUrl = "https://raw.githubusercontent.com/xyloflake/spot-secrets-go/refs/heads/main/secrets/secretBytes.json"; // Web API access token (obtained via session cookie) private string? _webAccessToken;