always close page
Build and Push Docker Images / build-and-push (push) Has been cancelled

This commit is contained in:
2025-06-21 20:27:28 +02:00
parent ac0b6c061e
commit 6a4deb883f
2 changed files with 24 additions and 4 deletions
@@ -565,4 +565,10 @@ async def detect_pagination_service(decoded_url):
}
# Perform the operation
return await safe_browser_operation(decoded_url, pagination_operation)
result = await safe_browser_operation(decoded_url, pagination_operation)
# Check if the result is an error from safe_browser_operation
if isinstance(result, dict) and result.get("status") == "error":
return result
return result