From 90b383e06f1e8fe4e335db2762fb5636f8a3aeeb Mon Sep 17 00:00:00 2001 From: senatorrr Date: Mon, 10 Jun 2024 09:33:36 +0300 Subject: [PATCH] Fix imginstructions key in TwoCaptcha/check_hint_img method --- twocaptcha/solver.py | 1 + 1 file changed, 1 insertion(+) diff --git a/twocaptcha/solver.py b/twocaptcha/solver.py index 928eaa2..8fde357 100755 --- a/twocaptcha/solver.py +++ b/twocaptcha/solver.py @@ -1021,6 +1021,7 @@ def check_hint_img(self, params): return params, files if not '.' in hint and len(hint) > 50: + params.update({'imginstructions': hint}) return params, files if not os.path.exists(hint):