From fc159302665e814c48f7a3ef3ed60c96f1667291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 28 Feb 2021 01:07:13 +0100 Subject: [PATCH] [readcomiconline] download high quality image versions (fixes #1347) --- gallery_dl/extractor/readcomiconline.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gallery_dl/extractor/readcomiconline.py b/gallery_dl/extractor/readcomiconline.py index ae1749ec..7ffe5dc0 100644 --- a/gallery_dl/extractor/readcomiconline.py +++ b/gallery_dl/extractor/readcomiconline.py @@ -47,12 +47,13 @@ class ReadcomiconlineIssueExtractor(ReadcomiconlineBase, ChapterExtractor): pattern = (r"(?i)(?:https?://)?(?:www\.)?readcomiconline\.to" r"(/Comic/[^/?#]+/[^/?#]+\?id=(\d+))") test = ("https://readcomiconline.to/Comic/W-i-t-c-h/Issue-130?id=22289", { - "url": "2bbab6ec4fbc05d269cca420a82a9b5acda28682", - "keyword": "30fe110273e871305001f33c18634516a0a51421", + "url": "30d29c5afc65043bfd384c010257ec2d0ecbafa6", + "keyword": "2d9ec81ce1b11fac06ebf96ce33cdbfca0e85eb5", }) def __init__(self, match): ChapterExtractor.__init__(self, match) + self.gallery_url += "&quality=hq" self.issue_id = match.group(2) def metadata(self, page):