From 1b02d65112e3f31f35ea5d578d81d35d2c340b8a Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Sun, 8 May 2022 12:42:20 -0400 Subject: [PATCH] Fix return --- beetsplug/spotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/spotify.py b/beetsplug/spotify.py index 5b554bc5b..eff717a9f 100644 --- a/beetsplug/spotify.py +++ b/beetsplug/spotify.py @@ -244,7 +244,7 @@ class SpotifyPlugin(MetadataSourcePlugin, BeetsPlugin): return TrackInfo( title=track_data['name'], track_id=track_data['id'], - spotify_track_id=track_id, + spotify_track_id=track_data['id'], artist=artist, artist_id=artist_id, spotify_artist_id=artist_id,