[pixiv] update URLs of followed users to the new format

This commit is contained in:
Mike Fährmann
2020-01-29 22:54:31 +01:00
parent d086f30b42
commit 71851a6241

View File

@@ -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