Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 3926221

Browse files
authored
Remove redundant checkKey parameter (#8559)
1 parent ac46e63 commit 3926221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stores/SetupEncryptionStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class SetupEncryptionStore extends EventEmitter {
100100

101101
public async fetchKeyInfo(): Promise<void> {
102102
const cli = MatrixClientPeg.get();
103-
const keys = await cli.isSecretStored('m.cross_signing.master', false);
103+
const keys = await cli.isSecretStored('m.cross_signing.master');
104104
if (keys === null || Object.keys(keys).length === 0) {
105105
this.keyId = null;
106106
this.keyInfo = null;

0 commit comments

Comments
 (0)