[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

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,)