From c8e4a2f8d16f35a99fbccefc64a7c4c6a6343bfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 28 Jun 2025 07:52:36 +0200 Subject: [PATCH] [comick] use 'chapter_hid' as default 'archive-format' (#6782) 'chapter_hid' seems to be all that is needed to uniquely identify a chapter, as comick.io is able to redirect to a full chapter URL from one that only includes this value: https://comick.io/comic/_/L7TaJB4n -> https://comick.io/comic/neko-no-oshigoto/L7TaJB4n-chapter-10.5-en --- gallery_dl/extractor/comick.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/comick.py b/gallery_dl/extractor/comick.py index ea5eac6a..7ef46070 100644 --- a/gallery_dl/extractor/comick.py +++ b/gallery_dl/extractor/comick.py @@ -85,6 +85,7 @@ class ComickBase(): class ComickChapterExtractor(ComickBase, ChapterExtractor): """Extractor for comick.io manga chapters""" + archive_fmt = "{chapter_hid}_{page}" pattern = BASE_PATTERN + r"/comic/([\w-]+)/(\w+-chapter-[^/?#]+)" example = "https://comick.io/comic/MANGA/ID-chapter-123-en"