1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-17 17:42:41 +03:00

Merge pull request #3917 from matrix-org/dbkr/complete_security_detect_success

Only say the session is verified if it is now verified
This commit is contained in:
David Baker
2020-01-24 09:38:25 +00:00
committed by GitHub

View File

@@ -44,9 +44,12 @@ export default class CompleteSecurity extends React.Component {
await accessSecretStorage(async () => { await accessSecretStorage(async () => {
await cli.checkOwnCrossSigningTrust(); await cli.checkOwnCrossSigningTrust();
}); });
if (cli.getCrossSigningId()) {
this.setState({ this.setState({
phase: PHASE_DONE, 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
} }