From 5bdfaeaf1d569a66a325dd17c92447fbf2871020 Mon Sep 17 00:00:00 2001 From: Beaudan Date: Tue, 6 Aug 2019 15:10:19 +1000 Subject: [PATCH] Don't send read receipts to public chats --- js/models/conversations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index fbcf5da03..3715a3aba 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -1958,7 +1958,7 @@ return; } - if (read.length && options.sendReadReceipts) { + if (!this.isPublic() && read.length && options.sendReadReceipts) { window.log.info(`Sending ${read.length} read receipts`); // Because syncReadMessages sends to our other devices, and sendReadReceipts goes // to a contact, we need accessKeys for both.