mirror of https://github.com/vector-im/riot-web
Merge pull request #3917 from matrix-org/dbkr/complete_security_detect_success
Only say the session is verified if it is now verifiedpull/21833/head
commit
81caa12b16
|
@ -44,9 +44,12 @@ export default class CompleteSecurity extends React.Component {
|
||||||
await accessSecretStorage(async () => {
|
await accessSecretStorage(async () => {
|
||||||
await cli.checkOwnCrossSigningTrust();
|
await cli.checkOwnCrossSigningTrust();
|
||||||
});
|
});
|
||||||
this.setState({
|
|
||||||
phase: PHASE_DONE,
|
if (cli.getCrossSigningId()) {
|
||||||
});
|
this.setState({
|
||||||
|
phase: PHASE_DONE,
|
||||||
|
});
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// this will throw if the user hits cancel, so ignore
|
// this will throw if the user hits cancel, so ignore
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue