From 80ef5646ab9176adb61449f6b2fa2577a0a0f2d7 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 11 May 2022 11:00:21 +0100 Subject: [PATCH] Remove redundant checkKey parameter --- src/stores/SetupEncryptionStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/SetupEncryptionStore.ts b/src/stores/SetupEncryptionStore.ts index d1341893240..b5df05b2ff4 100644 --- a/src/stores/SetupEncryptionStore.ts +++ b/src/stores/SetupEncryptionStore.ts @@ -100,7 +100,7 @@ export class SetupEncryptionStore extends EventEmitter { public async fetchKeyInfo(): Promise { const cli = MatrixClientPeg.get(); - const keys = await cli.isSecretStored('m.cross_signing.master', false); + const keys = await cli.isSecretStored('m.cross_signing.master'); if (keys === null || Object.keys(keys).length === 0) { this.keyId = null; this.keyInfo = null;