Fix shadowing in LoginPage.cpp
This commit is contained in:
parent
03d817d277
commit
0c0c69074d
@ -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 loginMethod = 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) {
|
||||||
loginMethod = LoginMethod::SSO;
|
loginMethod_ = LoginMethod::SSO;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
emit versionOk(loginMethod);
|
emit versionOk(loginMethod_);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user