diff --git a/gallery_dl/extractor/pixiv.py b/gallery_dl/extractor/pixiv.py index 8a100289..05e031cb 100644 --- a/gallery_dl/extractor/pixiv.py +++ b/gallery_dl/extractor/pixiv.py @@ -301,7 +301,7 @@ class PixivFavoriteExtractor(PixivExtractor): for preview in self.api.user_following(self.user_id): user = preview["user"] user["_extractor"] = PixivUserExtractor - url = "https://www.pixiv.net/member.php?id={}".format(user["id"]) + url = "https://www.pixiv.net/users/{}".format(user["id"]) yield Message.Queue, url, user