Merge pull request #4100 from matrix-org/foldleft/12352-ssss-overwrite

Fix bug where SSSS could be overwritten if user never cross-signs
pull/21833/head
Zoe 2020-02-21 14:02:29 +00:00 committed by GitHub
commit dcc8862d4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -128,13 +128,12 @@ export default class CrossSigningPanel extends React.PureComponent {
} }
const enabled = ( const enabled = (
crossSigningPublicKeysOnDevice &&
crossSigningPrivateKeysInStorage && crossSigningPrivateKeysInStorage &&
secretStorageKeyInAccount secretStorageKeyInAccount
); );
let summarisedStatus; let summarisedStatus;
if (enabled) { if (enabled && crossSigningPublicKeysOnDevice) {
summarisedStatus = <p> {_t( summarisedStatus = <p> {_t(
"Cross-signing and secret storage are enabled.", "Cross-signing and secret storage are enabled.",
)}</p>; )}</p>;