From 8ae4c553d2abfe34fc45193dead52e661a57b424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 23 Nov 2025 18:08:32 +0100 Subject: [PATCH] [simpcity] fix starting from a specific page (#8599) with the default '"order-posts": "desc"' --- gallery_dl/extractor/simpcity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/simpcity.py b/gallery_dl/extractor/simpcity.py index 0db4bc3d..4bca2b31 100644 --- a/gallery_dl/extractor/simpcity.py +++ b/gallery_dl/extractor/simpcity.py @@ -102,7 +102,7 @@ class SimpcityExtractor(Extractor): def _pagination_reverse(self, base, pnum=None): base = f"{self.root}{base}" - url = f"{base}/page-9999" # force redirect to last page + url = f"{base}/page-{'9999' if pnum is None else pnum}" with self.request_page(url) as response: url = response.url if url[-1] == "/":