diff --git a/streamrip/utils.py b/streamrip/utils.py index 6f34539..b409402 100644 --- a/streamrip/utils.py +++ b/streamrip/utils.py @@ -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":