! OwOMizu Errors
← All errors
medium captcha

Solver Failed - Please solve manually!

Description

The ONNX image solver ran but could not produce a confident answer, or the downloaded image was corrupt and decoding failed.

Cause

captcha_solver/best.onnx returned a low-confidence result, or the downloaded captcha bytes were truncated so Pillow failed to decode before the solver ran.

Fix

Solve the captcha manually in Discord that one time; the bot resumes afterwards. If it fails repeatedly, confirm captcha_solver/best.onnx (~12MB) is present and not corrupted. Recent builds validate image bytes and call handle.load() upfront, which eliminates most silent crashes.

Code change

Before
handle = Image.open(source)
return np.asarray(handle.convert('RGB'))
After
handle = Image.open(source)
handle.load()
return np.asarray(handle.convert('RGB'))