This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
Customized captcha resolver is not working properly #1474
wangjiyang
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It seems customized captcha resolver not working properly. ChatBot.ask always result in default captcha resolver instead of the one provided to ChatBot constructor.
I checked the code and found
__send_request
calls get_arkose_token withcaptcha_supported
set as false. Andget_arkose_token
'ssolver
parameter is not passed toget_arkose_token
's recursive calling.According to code logic, we should add following highlighted parameter to the recursive call.
Issue resolved after apply above patch. Do you have any idea about this issue?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions