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:
parent
fc5363f07e
commit
a1e1a2fb60
1 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue