1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 19:23:19 +00:00

Fix build

This commit is contained in:
Bernd Schoolmann
2025-10-28 16:39:06 +01:00
parent 283cd06304
commit 8cdc2da549

View File

@@ -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;