Only say the session is verified if it is now verified

pull/21833/head
David Baker 2020-01-23 19:19:12 +00:00
parent ce32c12303
commit 74b678d0ff
1 changed files with 6 additions and 3 deletions

View File

@ -44,9 +44,12 @@ export default class CompleteSecurity extends React.Component {
await accessSecretStorage(async () => {
await cli.checkOwnCrossSigningTrust();
});
this.setState({
phase: PHASE_DONE,
});
if (cli.getCrossSigningId()) {
this.setState({
phase: PHASE_DONE,
});
}
} catch (e) {
// this will throw if the user hits cancel, so ignore
}