Skip to content

Commit

Permalink
Merge pull request #670 from flowni/fix/capmonster-error-key
Browse files Browse the repository at this point in the history
fix capmonster json key
  • Loading branch information
codders authored Jan 5, 2025
2 parents 44a8037 + 080d46d commit c962721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flathunter/captcha/capmonster_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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...")
Expand Down

0 comments on commit c962721

Please sign in to comment.