From 8cdc2da549295172f0107ec34911af3b184419f5 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 28 Oct 2025 16:39:06 +0100 Subject: [PATCH] Fix build --- libs/common/src/tools/send/models/domain/send.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/common/src/tools/send/models/domain/send.ts b/libs/common/src/tools/send/models/domain/send.ts index ebe1b8f70d4..4565ac94c10 100644 --- a/libs/common/src/tools/send/models/domain/send.ts +++ b/libs/common/src/tools/send/models/domain/send.ts @@ -100,10 +100,10 @@ export class Send extends Domain { switch (this.type) { case SendType.File: - model.file = await this.file.decrypt(userId, model.cryptoKey); + model.file = await this.file.decrypt(model.cryptoKey); break; case SendType.Text: - model.text = await this.text.decrypt(userId, model.cryptoKey); + model.text = await this.text.decrypt(model.cryptoKey); break; default: break;