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] == "/":