From a1663d97de5bd094e07f3d37ada4d5d2a5172337 Mon Sep 17 00:00:00 2001 From: Fuggschen <64164659+Fuggschen@users.noreply.github.com> Date: Fri, 29 Jul 2022 03:08:15 +0200 Subject: [PATCH] Update spotify2tidal.py Changed order of spotify favourites to tidal so that it maintains the correct order from spotify. Old order was reversed and newest songs from spotify would be at the end of the list --- spotify2tidal/spotify2tidal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotify2tidal/spotify2tidal.py b/spotify2tidal/spotify2tidal.py index d4ad614..3dab906 100644 --- a/spotify2tidal/spotify2tidal.py +++ b/spotify2tidal/spotify2tidal.py @@ -82,7 +82,7 @@ def copy_all_saved_spotify_artists(self): def copy_all_saved_spotify_tracks(self): """Add all your saved artists to Tidal's favorites.""" - for track in self.spotify.saved_tracks: + for track in reversed(self.spotify.saved_tracks): artist_name = track["track"]["artists"][0]["name"] track_name = track["track"]["name"]