From df9b866bee570c15101c90eafe01dac62cadab30 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Wed, 7 Feb 2018 14:24:15 +0000 Subject: [PATCH] remove 'script blocker' from recaptcha message --- .../web/app/coffee/Features/Captcha/CaptchaMiddleware.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/app/coffee/Features/Captcha/CaptchaMiddleware.coffee b/services/web/app/coffee/Features/Captcha/CaptchaMiddleware.coffee index 59ad14b979..5a846ff839 100644 --- a/services/web/app/coffee/Features/Captcha/CaptchaMiddleware.coffee +++ b/services/web/app/coffee/Features/Captcha/CaptchaMiddleware.coffee @@ -17,7 +17,7 @@ module.exports = CaptchaMiddleware = if !body?.success logger.warn {statusCode: response.statusCode, body: body}, 'failed recaptcha siteverify request' return res.status(400).send({errorReason:"cannot_verify_user_not_robot", message: - {text:"Sorry, we could not verify that you are not a robot. Please check that Google reCAPTCHA is not being blocked by an ad or script blocker or firewall."} + {text:"Sorry, we could not verify that you are not a robot. Please check that Google reCAPTCHA is not being blocked by an ad blocker or firewall."} }) else return next()