try: fix all fav tracks order

This commit is contained in:
cwilvx
2024-10-21 10:09:49 +03:00
parent aea8c15f6f
commit a26373669d
2 changed files with 3 additions and 2 deletions
-1
View File
@@ -137,7 +137,6 @@ def get_favorite_tracks(query: GetAllOfTypeQuery):
Others will return -1
"""
tracks, total = FavoritesTable.get_fav_tracks(query.start, query.limit)
tracks.reverse()
tracks = TrackStore.get_tracks_by_trackhashes([t.hash for t in tracks])
return {"tracks": serialize_tracks(tracks), "total": total}