fallback page size
Build and Push Docker Images / build-and-push (push) Successful in 21s

This commit is contained in:
2025-05-08 18:00:56 +02:00
parent 4ca113a7d7
commit e77dcbdf74
@@ -557,7 +557,7 @@ async def detect_pagination_service(decoded_url):
"hasPagination": pagination_data['hasPagination'],
"urlTemplate": url_template,
"lastPage": pagination_data['lastPageNumber'],
"stepSize": step_size
"stepSize": step_size if step_size is not None and step_size >= 5 else 1
}
return result