Skip to content

Commit

Permalink
Merge pull request #27 from rnagabhyrava/develop
Browse files Browse the repository at this point in the history
Fixed deezer playlists not unpacking when using deezer id
  • Loading branch information
rnagabhyrava authored Jul 12, 2022
2 parents afe014f + deaa9c2 commit 0c02473
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plex-playlist-sync/utils/deezer.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def _get_dz_playlists(

if userInputs.deezer_user_id:
try:
dz_user_playlists = dz.get_user(
userInputs.deezer_user_id
).get_playlists()
dz_user_playlists = [
*dz.get_user(userInputs.deezer_user_id).get_playlists()
]
except:
dz_user_playlists = []
logging.info(
Expand Down

0 comments on commit 0c02473

Please sign in to comment.