mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-09 14:11:55 -04:00
Merge pull request #365 from reaitten/patch-1
fix: multiple "600" in original cover URL filename
This commit is contained in:
commit
3b1a2e67a7
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ def get_cover_urls(resp: dict, source: str) -> Optional[dict]:
|
|||
|
||||
if source == "qobuz":
|
||||
cover_urls = resp["image"]
|
||||
cover_urls["original"] = cover_urls["large"].replace("600", "org")
|
||||
cover_urls["original"] = "org".join(cover_urls["large"].rsplit('600', 1))
|
||||
return cover_urls
|
||||
|
||||
if source == "tidal":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue