No need to check if rucaptcha_at is blank since (Time.now.to_i - 0) should always biger than 120

This commit is contained in:
anvyzhang 2015-11-20 10:42:08 +08:00
parent 544841d6eb
commit 0fac15cd22
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ module RuCaptcha
def verify_rucaptcha?(resource = nil)
rucaptcha_at = session[:_rucaptcha_at].to_i
# Captcha chars in Session expire in 2 minutes
if rucaptcha_at.blank? || (Time.now.to_i - rucaptcha_at) > 120
if (Time.now.to_i - rucaptcha_at) > 120
return false
end