[aryion] fix pagination (#8091)

ensure there is no "Next >>" link before stopping
This commit is contained in:
Mike Fährmann
2025-08-21 10:56:03 +02:00
parent ff94f1dec5
commit 1fc20d3fdd

View File

@@ -95,7 +95,7 @@ class AryionExtractor(Extractor):
cnt += 1
yield post_id
if cnt < 40:
if cnt < 40 and ">Next &gt;&gt;<" not in page:
return
params["p"] += 1