From: Claire Date: Mon, 24 Jan 2022 20:29:50 +0000 (+0100) Subject: Please CodeClimate X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=04050fbd46d7758873b33dd6f5648cc37183b078;p=mastodon.git Please CodeClimate --- diff --git a/Gemfile b/Gemfile index 282ab65e4..67c50d19f 100644 --- a/Gemfile +++ b/Gemfile @@ -157,4 +157,4 @@ gem 'connection_pool', require: false gem 'xorcist', '~> 1.1' -gem "hcaptcha", "~> 7.1" +gem 'hcaptcha', '~> 7.1' diff --git a/app/controllers/concerns/captcha_concern.rb b/app/controllers/concerns/captcha_concern.rb index 5a23e59e3..5bc4ba920 100644 --- a/app/controllers/concerns/captcha_concern.rb +++ b/app/controllers/concerns/captcha_concern.rb @@ -35,14 +35,14 @@ module CaptchaConcern if verify_hcaptcha session[:captcha_passed_at] = Time.now.utc - return true + true else if block_given? message = flash[:hcaptcha_error] flash.delete(:hcaptcha_error) yield message end - return false + false end end