Remove redundant checkKey parameter (#8559)

t3chguy/dedup-icons-17oct
Michael Telatynski 2022-05-11 11:10:50 +01:00 committed by GitHub
parent ac46e6319b
commit 39262215cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export class SetupEncryptionStore extends EventEmitter {
public async fetchKeyInfo(): Promise<void> { public async fetchKeyInfo(): Promise<void> {
const cli = MatrixClientPeg.get(); 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) { if (keys === null || Object.keys(keys).length === 0) {
this.keyId = null; this.keyId = null;
this.keyInfo = null; this.keyInfo = null;