diff --git a/libs/common/src/tools/send/services/send.service.ts b/libs/common/src/tools/send/services/send.service.ts index eddc35ae795..b4debcda918 100644 --- a/libs/common/src/tools/send/services/send.service.ts +++ b/libs/common/src/tools/send/services/send.service.ts @@ -143,9 +143,9 @@ export class SendService implements InternalSendServiceAbstraction { } decSends = []; - const hasKey = await this.cryptoService.hasKey(); + const hasKey = await this.cryptoService.hasUserKey(); if (!hasKey) { - throw new Error("No key."); + throw new Error("No user key found."); } const promises: Promise[] = []; @@ -249,7 +249,7 @@ export class SendService implements InternalSendServiceAbstraction { const sends = Object.values(sendsMap || {}).map((f) => new Send(f)); this._sends.next(sends); - if (await this.cryptoService.hasKey()) { + if (await this.cryptoService.hasUserKey()) { this._sendViews.next(await this.decryptSends(sends)); } }