Fixed spotify playlist conversion with old cache (int and not str)
This fixes #27
This commit is contained in:
parent
bafdb84ce7
commit
3af0305a80
|
@ -1,3 +1,3 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
__version__ = "1.2.10"
|
||||
__version__ = "1.2.11"
|
||||
|
|
|
@ -244,7 +244,7 @@ class SpotifyHelper:
|
|||
else:
|
||||
trackID = self.get_trackid_spotify(dz, "0", queueItem.settings['fallbackSearch'], track)
|
||||
cache['tracks'][str(track['id'])] = trackID
|
||||
if trackID == "0":
|
||||
if str(trackID) == "0":
|
||||
deezerTrack = {
|
||||
'SNG_ID': "0",
|
||||
'SNG_TITLE': track['name'],
|
||||
|
|
Loading…
Reference in New Issue