mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-20 10:15:23 -04:00
Merge pull request #204 from uwulily/pr/imageFix
Fixed an error that occurred when downloading some playlists from TIDAL
This commit is contained in:
commit
fc9c2e675a
1 changed files with 1 additions and 1 deletions
|
@ -1784,7 +1784,7 @@ class Playlist(Tracklist, Media):
|
|||
|
||||
elif self.client.source == "tidal":
|
||||
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")
|
||||
|
||||
tracklist = self.meta["tracks"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue