fix playlist image being lost on title edit

This commit is contained in:
geoffrey45
2022-04-09 10:13:32 +03:00
parent 2e512bc223
commit 90d646d674
5 changed files with 17 additions and 15 deletions
+2 -2
View File
@@ -38,8 +38,8 @@ def add_track(playlistid: str, trackid: str):
instances.playlist_instance.add_track_to_playlist(
playlistid, track)
return
except TrackExistsInPlaylist as e:
return {"error": str(e)}, 409
except TrackExistsInPlaylist as error:
raise error
def get_playlist_tracks(pid: str):