From a34f5622f51732f414cd7d8e95d2e83a87cbc938 Mon Sep 17 00:00:00 2001 From: Adam French Date: Tue, 25 Nov 2025 23:31:59 +0000 Subject: [PATCH] remove redundant preview url --- backend/handlers/handle_spotify.go | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/handlers/handle_spotify.go b/backend/handlers/handle_spotify.go index d8b968e..16da31e 100644 --- a/backend/handlers/handle_spotify.go +++ b/backend/handlers/handle_spotify.go @@ -72,7 +72,6 @@ func (store *Store) ListeningTo(ctx *gin.Context) { ctx.JSON(200, gin.H{ "playing": true, "song_name": item.Name, - "song_url": item.PreviewURL, "artist_name": artistName, "album_image": imgURL, })