From 168397d8ef66e7bac5c526faa501fec3421cef4a Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Tue, 23 Jul 2024 07:19:32 -0700 Subject: [PATCH] Improve attachment option handling --- ts/AttachmentCrypto.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ts/AttachmentCrypto.ts b/ts/AttachmentCrypto.ts index ee84e7f316e7..ab40b4bd6895 100644 --- a/ts/AttachmentCrypto.ts +++ b/ts/AttachmentCrypto.ts @@ -404,9 +404,7 @@ export async function decryptAttachmentV2ToSink( switch (type) { case 'local': case 'backupThumbnail': - log.info( - `${logId}: skipping digest check since this is a ${type} attachment` - ); + // Skip digest check break; case 'standard': if (!constantTimeEqual(ourDigest, options.theirDigest)) {