1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 03:02:50 +01:00

[pixiv] include '.gif' in background fallback URLs (#2495)

This commit is contained in:
Mike Fährmann 2022-06-03 17:25:23 +02:00
parent 57508d3bb7
commit 345199a3ec
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -263,7 +263,8 @@ class PixivBackgroundExtractor(PixivExtractor):
url = url.replace("_master1200.", ".")
work = self._make_work("background", url, detail["user"])
if url.endswith(".jpg"):
work["_fallback"] = (url[:-4] + ".png",)
url = url[:-4]
work["_fallback"] = (url + ".png", url + ".gif")
return (work,)