summary refs log tree commit diff
path: root/src/LoginPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LoginPage.cpp')
-rw-r--r--src/LoginPage.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/LoginPage.cpp b/src/LoginPage.cpp
index cfc600ae..6bed446e 100644
--- a/src/LoginPage.cpp
+++ b/src/LoginPage.cpp
@@ -171,16 +171,16 @@ LoginPage::checkHomeserverVersion()
               if (err || flows.flows.empty())
                   emit versionOkCb(true, false);
 
-              bool ssoSupported_      = false;
-              bool passwordSupported_ = false;
+              bool ssoSupported      = false;
+              bool passwordSupported = false;
               for (const auto &flow : flows.flows) {
                   if (flow.type == mtx::user_interactive::auth_types::sso) {
-                      ssoSupported_ = true;
+                      ssoSupported = true;
                   } else if (flow.type == mtx::user_interactive::auth_types::password) {
-                      passwordSupported_ = true;
+                      passwordSupported = true;
                   }
               }
-              emit versionOkCb(passwordSupported_, ssoSupported_);
+              emit versionOkCb(passwordSupported, ssoSupported);
           });
     });
 }