mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-13 06:34:45 -04:00
Fixed:
error that occured when ripping tidal playlists
This commit is contained in:
parent
c9e75d01c2
commit
66bd20a279
1 changed files with 1 additions and 1 deletions
|
@ -1785,7 +1785,7 @@ class Playlist(Tracklist, Media):
|
||||||
|
|
||||||
elif self.client.source == "tidal":
|
elif self.client.source == "tidal":
|
||||||
self.name = self.meta["title"]
|
self.name = self.meta["title"]
|
||||||
self.image = tidal_cover_url(self.meta["image"], 640)
|
self.image = tidal_cover_url(self.meta["image"] or self.meta['squareImage'], 640)
|
||||||
self.creator = safe_get(self.meta, "creator", "name", default="TIDAL")
|
self.creator = safe_get(self.meta, "creator", "name", default="TIDAL")
|
||||||
|
|
||||||
tracklist = self.meta["tracks"]
|
tracklist = self.meta["tracks"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue