diff --git a/src/captcha/hcaptcha-solver.ts b/src/captcha/hcaptcha-solver.ts index 856e550..5a3fa40 100644 --- a/src/captcha/hcaptcha-solver.ts +++ b/src/captcha/hcaptcha-solver.ts @@ -11,10 +11,15 @@ import { SolverOptions } from '.' */ export default async function solve({ url }: SolverOptions): Promise { + throw new Error("hcaptcha-solver is not able to solve the new hCaptcha challenge. This issue is already reported #31."); + +/* try { return await solveCaptcha(url) } catch (e) { console.error(e) return null } +*/ + }