@@ -23,7 +23,7 @@ class FunCaptcha(BaseCaptcha):
2323 ... funcaptchaApiJSSubdomain="https://api.funcaptcha.com/"
2424 ... ) as instance:
2525 >>> instance.captcha_handler()
26- CaptchaResponseSer(errorId=False ,
26+ CaptchaResponseSer(errorId=0 ,
2727 errorCode=None,
2828 errorDescription=None,
2929 taskId='73bdcd28-6c77-4414-8....',
@@ -38,7 +38,7 @@ class FunCaptcha(BaseCaptcha):
3838 ... funcaptchaApiJSSubdomain="https://api.funcaptcha.com/"
3939 ... ) as instance:
4040 >>> await instance.aio_captcha_handler()
41- CaptchaResponseSer(errorId=False ,
41+ CaptchaResponseSer(errorId=0 ,
4242 errorCode=None,
4343 errorDescription=None,
4444 taskId='73bdcd28-6c77-4414-8....',
@@ -79,7 +79,7 @@ def captcha_handler(self) -> CaptchaResponseSer:
7979 ... websitePublicKey="69A21A01-CC7B-B9C6-0F9A-E7FA06677FFC",
8080 ... funcaptchaApiJSSubdomain="https://api.funcaptcha.com/"
8181 ... ).captcha_handler()
82- CaptchaResponseSer(errorId=False ,
82+ CaptchaResponseSer(errorId=0 ,
8383 errorCode=None,
8484 errorDescription=None,
8585 taskId='73bdcd28-6c77-4414-8....',
@@ -96,7 +96,7 @@ def captcha_handler(self) -> CaptchaResponseSer:
9696 ... proxyAddress="0.0.0.0",
9797 ... proxyPort=9090,
9898 ... ).captcha_handler()
99- CaptchaResponseSer(errorId=False ,
99+ CaptchaResponseSer(errorId=0 ,
100100 errorCode=None,
101101 errorDescription=None,
102102 taskId='73bdcd28-6c77-4414-8....',
@@ -123,7 +123,7 @@ async def aio_captcha_handler(self) -> CaptchaResponseSer:
123123 ... websitePublicKey="69A21A01-CC7B-B9C6-0F9A-E7FA06677FFC",
124124 ... funcaptchaApiJSSubdomain="https://api.funcaptcha.com/"
125125 ... ).aio_captcha_handler()
126- CaptchaResponseSer(errorId=False ,
126+ CaptchaResponseSer(errorId=0 ,
127127 errorCode=None,
128128 errorDescription=None,
129129 taskId='73bdcd28-6c77-4414-8....',
@@ -140,7 +140,7 @@ async def aio_captcha_handler(self) -> CaptchaResponseSer:
140140 ... proxyAddress="0.0.0.0",
141141 ... proxyPort=9090,
142142 ... ).aio_captcha_handler()
143- CaptchaResponseSer(errorId=False ,
143+ CaptchaResponseSer(errorId=0 ,
144144 errorCode=None,
145145 errorDescription=None,
146146 taskId='73bdcd28-6c77-4414-8....',
@@ -156,7 +156,7 @@ async def aio_captcha_handler(self) -> CaptchaResponseSer:
156156 ... ).aio_captcha_handler(
157157 ... image=body,
158158 ... question="Ask your question")
159- CaptchaResponseSer(errorId=False ,
159+ CaptchaResponseSer(errorId=0 ,
160160 errorCode=None,
161161 errorDescription=None,
162162 taskId='73bdcd28-6c77-4414-8....',
0 commit comments