0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added better error handling for hCapthca

no issue

The errors returned by captcha validation shouldn't be visible to the
user, but should at least be accessible for the site owner.
This commit is contained in:
Sam Lord 2025-02-11 14:50:17 +00:00 committed by Sam Lord
parent fc5363f07e
commit a1e1a2fb60

View file

@ -61,8 +61,15 @@ class CaptchaService {
if (errorUtils.isGhostError(err)) {
return next(err);
} else {
const message = 'Failed to verify hCaptcha token';
logging.error(new InternalServerError({
message,
err
}));
return next(new InternalServerError({
message: 'Failed to verify hCaptcha token'
message
}));
}
}