rename login_method -> loginMethod to fit the Nheko coding style

This commit is contained in:
d42 2020-12-31 17:57:09 +01:00
parent 4bc25ffb15
commit b732ea432b

View file

@ -315,14 +315,14 @@ LoginPage::checkHomeserverVersion()
if (err || flows.flows.empty()) if (err || flows.flows.empty())
emit versionOkCb(LoginMethod::Password); emit versionOkCb(LoginMethod::Password);
LoginMethod login_method = LoginMethod::Password; LoginMethod loginMethod = LoginMethod::Password;
for(const auto &flow : flows.flows) { for(const auto &flow : flows.flows) {
if (flow.type == mtx::user_interactive::auth_types::sso) { if (flow.type == mtx::user_interactive::auth_types::sso) {
login_method = LoginMethod::SSO; loginMethod = LoginMethod::SSO;
break; break;
} }
} }
emit versionOk(login_method); emit versionOk(loginMethod);
}); });
}); });
} }