whoops, the number of unverified users matters to the logic

pull/21833/head
Zoe 2020-01-17 10:22:53 +00:00
parent 510b08c88b
commit d02185e4af
1 changed files with 1 additions and 10 deletions

View File

@ -809,15 +809,6 @@ export default createReactClass({
debuglog("e2e verified", verified, "unverified", unverified);
/* If we've not verified anyone, set state to "normal" */
if (verified.length == 0) {
this.setState({
e2eStatus: "normal",
});
debuglog("e2e state set to normal as we have no verified users to worry about");
return;
}
/* Check all verified user devices. */
for (const userId of verified) {
const devices = await cli.getStoredDevicesForUser(userId);
@ -835,7 +826,7 @@ export default createReactClass({
}
this.setState({
e2eStatus: "verified",
e2eStatus: unverified.length === 0 ? "verified" : "normal",
});
},