From 080d46d6943cddfde743e93d0919243ea573a83c Mon Sep 17 00:00:00 2001 From: Nic Date: Sun, 5 Jan 2025 12:02:40 +0100 Subject: [PATCH] fix capmonster json key --- flathunter/captcha/capmonster_solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flathunter/captcha/capmonster_solver.py b/flathunter/captcha/capmonster_solver.py index b310702d..6c8e6ae3 100644 --- a/flathunter/captcha/capmonster_solver.py +++ b/flathunter/captcha/capmonster_solver.py @@ -77,7 +77,7 @@ def __retrieve_capmonster_result(self, captcha_id: str): response_json = retrieve_response.json() if not "status" in response_json: - raise requests.HTTPError(response=response_json["errrorCode"]) + raise requests.HTTPError(response=response_json["errorCode"]) if response_json["status"] == "processing": logger.info("Captcha is not ready yet, waiting...")