mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Remove redundant checkKey parameter (#8559)
This commit is contained in:
parent
ac46e6319b
commit
39262215cd
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ export class SetupEncryptionStore extends EventEmitter {
|
|||
|
||||
public async fetchKeyInfo(): Promise<void> {
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue