From 47d45625bcf1b46201d3891e12547922ad30c7bb Mon Sep 17 00:00:00 2001 From: froge Date: Wed, 12 Feb 2025 14:26:24 +1000 Subject: [PATCH] Fix typo in environment variable name --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 5dd8838..d0d3482 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ type Env struct { // Grab some required spotify credentials from the environment var spotifyClientID = os.Getenv("SPOTIFY_ID") -var spotifyClientSecret = os.Getenv("SPOTIFY_SECRET") +var spotifyClientSecret = os.Getenv("SPOTIFY_TOKEN") func setupRouter(env *Env, spotifyID string, spotifySecret string) *gin.Engine { var r *gin.Engine = gin.Default()