From 56a1c31bf4c71b6d2490299a7eb2b7683eea3139 Mon Sep 17 00:00:00 2001 From: Beaudan Brown Date: Fri, 15 Nov 2019 13:26:31 +1100 Subject: [PATCH] Ensure we can still send messages to ourselves (sync) and disable group chats --- libtextsecure/sendmessage.js | 1 + preload.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libtextsecure/sendmessage.js b/libtextsecure/sendmessage.js index a2fa66cc6..7b366b78d 100644 --- a/libtextsecure/sendmessage.js +++ b/libtextsecure/sendmessage.js @@ -391,6 +391,7 @@ MessageSender.prototype = { ); if ( + number === textsecure.storage.user.getNumber() || haveSession || options.isPublic || options.messageType === 'friend-request' diff --git a/preload.js b/preload.js index f1e296f15..6085bbd94 100644 --- a/preload.js +++ b/preload.js @@ -470,5 +470,5 @@ window.SMALL_GROUP_SIZE_LIMIT = 10; window.lokiFeatureFlags = { multiDeviceUnpairing: false, - privateGroupChats: true, + privateGroupChats: false, };