From 6386ee54e1c8c3495860ee6630b08cd89d63217e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 16 Apr 2020 23:19:06 +0200 Subject: [PATCH] [deviantart] add extractor info to 'following' results --- gallery_dl/extractor/deviantart.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/deviantart.py b/gallery_dl/extractor/deviantart.py index 2dcf0b7c..ca722b89 100644 --- a/gallery_dl/extractor/deviantart.py +++ b/gallery_dl/extractor/deviantart.py @@ -813,6 +813,7 @@ class DeviantartFollowingExtractor(DeviantartExtractor): yield Message.Version, 1 for user in eclipse_api.user_watching(self.user, self.offset): url = "{}/{}".format(self.root, user["username"]) + user["_extractor"] = DeviantartUserExtractor yield Message.Queue, url, user