mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 20:26:19 +02:00
Add null check
This commit is contained in:
parent
6e4a2b7efe
commit
d1caadec9f
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user