From 4e37f21f730f43eafda8070f2e45072cc83521d5 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Thu, 8 Jul 2021 09:47:45 -0700 Subject: [PATCH] Don't warn on posting without captcha when "Verification not required." --- src/Posting/Captcha.t.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Posting/Captcha.t.coffee b/src/Posting/Captcha.t.coffee index af1c281a4..823f9ece5 100644 --- a/src/Posting/Captcha.t.coffee +++ b/src/Posting/Captcha.t.coffee @@ -60,7 +60,7 @@ Captcha.t = if @nodes.container for key in ['t-response', 't-challenge'] response[key] = $("[name='#{key}']", @nodes.container).value - if !response['t-response'] + if !response['t-response'] and !((el = $('#t-msg')) and /Verification not required/i.test(el.textContent)) response = null response