From cc86592a32442c15cb688b5cc3679b122f0489c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 15 Jan 2026 21:26:54 +0100 Subject: [PATCH] [chevereto] unescape continuation URLs some instances respond with redirects when using these URLs as is --- gallery_dl/extractor/chevereto.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/chevereto.py b/gallery_dl/extractor/chevereto.py index 7ca71362..22b067cc 100644 --- a/gallery_dl/extractor/chevereto.py +++ b/gallery_dl/extractor/chevereto.py @@ -36,6 +36,7 @@ class CheveretoExtractor(BaseExtractor): url = text.extr(page, 'data-pagination="next" href="', '"') if not url: return + url = text.unescape(url).replace("+", " ") if url[0] == "/": url = self.root + url page = self.request(url).text