Avoid logged in event race
This commit is contained in:
parent
71fa3222fe
commit
5926e277c4
1 changed files with 5 additions and 4 deletions
|
@ -1820,12 +1820,9 @@ export default createReactClass({
|
|||
},
|
||||
|
||||
async onUserCompletedLoginFlow(credentials) {
|
||||
// Create and start the client in the background
|
||||
Lifecycle.setLoggedIn(credentials);
|
||||
|
||||
// Wait for the client to be logged in (but not started)
|
||||
// which is enough to ask the server about account data.
|
||||
await new Promise(resolve => {
|
||||
const loggedIn = new Promise(resolve => {
|
||||
const actionHandlerRef = dis.register(payload => {
|
||||
if (payload.action !== "on_logged_in") {
|
||||
return;
|
||||
|
@ -1835,6 +1832,10 @@ export default createReactClass({
|
|||
});
|
||||
});
|
||||
|
||||
// Create and start the client in the background
|
||||
Lifecycle.setLoggedIn(credentials);
|
||||
await loggedIn;
|
||||
|
||||
const cli = MatrixClientPeg.get();
|
||||
// We're checking `isCryptoAvailable` here instead of `isCryptoEnabled`
|
||||
// because the client hasn't been started yet.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue