about summary refs log tree commit diff
path: root/app/controllers/settings/identity_proofs_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/settings/identity_proofs_controller.rb')
-rw-r--r--app/controllers/settings/identity_proofs_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/settings/identity_proofs_controller.rb b/app/controllers/settings/identity_proofs_controller.rb
index 8f857fdcc..e22b4d9be 100644
--- a/app/controllers/settings/identity_proofs_controller.rb
+++ b/app/controllers/settings/identity_proofs_controller.rb
@@ -18,7 +18,7 @@ class Settings::IdentityProofsController < Settings::BaseController
       provider_username: params[:provider_username]
     )
 
-    if current_account.username == params[:username]
+    if current_account.username.casecmp(params[:username]).zero?
       render layout: 'auth'
     else
       flash[:alert] = I18n.t('identity_proofs.errors.wrong_user', proving: params[:username], current: current_account.username)