add migration to remove the small thumbs path

+ misc
This commit is contained in:
mungai-njoroge
2023-08-12 18:23:28 +03:00
parent 0a703dcc0f
commit 27c4924327
9 changed files with 42 additions and 31 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ def get_album_tracks(albumhash: str):
Returns all the tracks in the given album, sorted by disc and track number.
"""
tracks = TrackStore.get_tracks_by_albumhash(albumhash)
sort_by_track_no(tracks)
tracks = sort_by_track_no(tracks)
return {"tracks": tracks}