1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-24 19:52:32 +01:00

[pixiv] fix parsing of illust-ids

This commit is contained in:
Mike Fährmann 2015-03-27 18:09:30 +01:00
parent a66a5099f8
commit d13608e909

View File

@ -70,7 +70,7 @@ class Extractor(AsyncExtractor):
def image_ids(self):
"""generator -- yield all image ids"""
needle = '<li class="image-item"><a href="/member_illust.php?mode=medium&amp;illust_id='
needle = '<a href="/member_illust.php?mode=medium&amp;illust_id='
params = {"id": self.member_id, "p": 1}
while True:
text = self.request(self.member_url, params=params).text