add '_extractor' info to manga extractor results

This commit is contained in:
Mike Fährmann
2019-02-13 13:23:36 +01:00
parent 89ee8cd7e4
commit 32edf4fc7b
13 changed files with 16 additions and 2 deletions

View File

@@ -253,6 +253,7 @@ class MangaExtractor(Extractor):
subcategory = "manga"
categorytransfer = True
chapterclass = None
reverse = True
root = ""
@@ -273,6 +274,7 @@ class MangaExtractor(Extractor):
yield Message.Version, 1
for chapter, data in chapters:
data["_extractor"] = self.chapterclass
yield Message.Queue, chapter, data
def login(self):