aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/weebcentral.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/extractor/weebcentral.py')
-rw-r--r--gallery_dl/extractor/weebcentral.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/gallery_dl/extractor/weebcentral.py b/gallery_dl/extractor/weebcentral.py
index fc1badb..cacefd6 100644
--- a/gallery_dl/extractor/weebcentral.py
+++ b/gallery_dl/extractor/weebcentral.py
@@ -50,14 +50,16 @@ class WeebcentralChapterExtractor(WeebcentralBase, ChapterExtractor):
def metadata(self, page):
extr = text.extract_from(page)
manga_id = extr("'series_id': '", "'")
-
- data = self._extract_manga_data(manga_id)
- data["chapter_id"] = self.groups[1]
- data["chapter_type"] = extr("'chapter_type': '", "'")
-
+ chapter_type = extr("'chapter_type': '", "'")
chapter, sep, minor = extr("'number': '", "'").partition(".")
- data["chapter"] = text.parse_int(chapter)
- data["chapter_minor"] = sep + minor
+
+ data = {
+ "chapter": text.parse_int(chapter),
+ "chapter_id": self.groups[1],
+ "chapter_type": chapter_type,
+ "chapter_minor": sep + minor,
+ }
+ data.update(self._extract_manga_data(manga_id))
return data