From 18bf616e2e0821a46b1cb71737d80b099a64b237 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Tue, 22 Jun 2021 08:10:47 -0400 Subject: [PATCH] Correct typo (#416) --- common/src/services/crypto.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/services/crypto.service.ts b/common/src/services/crypto.service.ts index 50ab100a76..c25d2c9cd7 100644 --- a/common/src/services/crypto.service.ts +++ b/common/src/services/crypto.service.ts @@ -334,7 +334,7 @@ export class CryptoService implements CryptoServiceAbstraction { } async clearKeys(): Promise { - await this.clearEncKey(); + await this.clearKey(); await this.clearKeyHash(); await this.clearOrgKeys(); await this.clearEncKey();