Fixed spotify playlist conversion with old cache (int and not str)
This fixes #27
This commit is contained in:
@ -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'],
|
||||
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
|
||||
|
||||
setup(
|
||||
name="deemix",
|
||||
version="1.2.10",
|
||||
version="1.2.11",
|
||||
description="A barebone deezer downloader library",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
|
Reference in New Issue
Block a user