summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/sessions_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb
index 8755730..2681320 100644
--- a/app/controllers/sessions_controller.rb
+++ b/app/controllers/sessions_controller.rb
@@ -21,7 +21,7 @@ class SessionsController < ApplicationController
flash[:alert] = "Your account has been disabled!"
elsif user.banned?
flash[:alert] = "You are banned!"
- elsif user.totp_enabled && !TOTP.verify?(user.totp_code, params[:totp_code])
+ elsif user.totp_enabled && !TOTP.valid?(user.totp_code, params[:totp_code])
flash[:alert] = "You're doing it wrong!"
render action: 'new'
return