1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-04 11:51:45 +03:00

Add null check

This commit is contained in:
David Baker
2020-06-19 20:07:20 +01:00
parent 6e4a2b7efe
commit d1caadec9f

View File

@@ -76,7 +76,7 @@ export class SetupEncryptionStore extends EventEmitter {
async fetchKeyInfo() { async fetchKeyInfo() {
const keys = await MatrixClientPeg.get().isSecretStored('m.cross_signing.master', false); const keys = await MatrixClientPeg.get().isSecretStored('m.cross_signing.master', false);
if (Object.keys(keys).length === 0) { if (keys === null || Object.keys(keys).length === 0) {
this.keyId = null; this.keyId = null;
this.keyInfo = null; this.keyInfo = null;
} else { } else {