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() {
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.keyInfo = null;
} else {