From c1222a748dc50b56dc8ddbc7bfec299be08ef3c3 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 30 Oct 2023 10:37:53 +1100 Subject: [PATCH] fix: handle dataextraction notification even if read receipts are off --- ts/receiver/contentMessage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/receiver/contentMessage.ts b/ts/receiver/contentMessage.ts index 29f51e354..52e1e1ff3 100644 --- a/ts/receiver/contentMessage.ts +++ b/ts/receiver/contentMessage.ts @@ -836,7 +836,7 @@ export async function handleDataExtractionNotification( await removeFromCache(envelope); const convo = getConversationController().get(source); - if (!convo || !convo.isPrivate() || !Storage.get(SettingsKey.settingsReadReceipt)) { + if (!convo || !convo.isPrivate()) { window?.log?.info( 'Got DataNotification for unknown or non private convo or read receipt not enabled' );