From e7fe91d037a9e1ce09248d19c69feb5c0f87251a Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Fri, 2 May 2025 21:31:06 +0200 Subject: [PATCH] try this --- Dockers/puppeteer-api/app/services/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockers/puppeteer-api/app/services/browser.py b/Dockers/puppeteer-api/app/services/browser.py index dd819a6..4efab20 100644 --- a/Dockers/puppeteer-api/app/services/browser.py +++ b/Dockers/puppeteer-api/app/services/browser.py @@ -533,7 +533,7 @@ async def detect_pagination_service(decoded_url): # Check if the pattern is unclear has_pagination = True url_string_template = str(url_template) - if url_string_template and url_string_template.startswith("Pattern unclear"): + if url_string_template and (url_string_template.startswith("Pattern unclear") or url_string_template.startswith("AJAX pagination")): has_pagination = False url_template = None