changed logic to reflect the task
This commit is contained in:
parent
8efc45b31a
commit
510b08c88b
1 changed files with 6 additions and 7 deletions
|
@ -809,17 +809,16 @@ export default createReactClass({
|
||||||
|
|
||||||
debuglog("e2e verified", verified, "unverified", unverified);
|
debuglog("e2e verified", verified, "unverified", unverified);
|
||||||
|
|
||||||
/* If we verify any users in this room, expect to verify every user in the room */
|
/* If we've not verified anyone, set state to "normal" */
|
||||||
if (verified.length > 0 && unverified.length > 0) {
|
if (verified.length == 0) {
|
||||||
this.setState({
|
this.setState({
|
||||||
e2eStatus: "warning",
|
e2eStatus: "normal",
|
||||||
});
|
});
|
||||||
debuglog("e2e status set to warning as some, but not all, users are verified");
|
debuglog("e2e state set to normal as we have no verified users to worry about");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* At this point, either `verified` or `unverified` is empty, or both */
|
/* Check all verified user devices. */
|
||||||
/* Check all verified user devices. We don't care if everyone's unverified anyway. */
|
|
||||||
for (const userId of verified) {
|
for (const userId of verified) {
|
||||||
const devices = await cli.getStoredDevicesForUser(userId);
|
const devices = await cli.getStoredDevicesForUser(userId);
|
||||||
const allDevicesVerified = devices.every(({deviceId}) => {
|
const allDevicesVerified = devices.every(({deviceId}) => {
|
||||||
|
@ -836,7 +835,7 @@ export default createReactClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
e2eStatus: unverified.length === 0 ? "verified" : "normal",
|
e2eStatus: "verified",
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue