1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2025-02-01 12:01:41 +01:00

[poipiku] update filter for static images (#2796)

This commit is contained in:
Mike Fährmann 2022-08-01 12:36:19 +02:00
parent b9a14b5758
commit 033faf67ec
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -51,7 +51,7 @@ class PoipikuExtractor(Extractor):
thumb = extr('class="IllustItemThumbImg" src="', '"')
if not thumb:
break
elif thumb.startswith("/img/"):
elif thumb.startswith(("//img.poipiku.com/img/", "/img/")):
continue
post["num"] += 1
url = text.ensure_http_scheme(thumb[:-8])