From 812fac40206bae96fd0016dfa078a7aa651c77e0 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 5 Feb 2021 13:30:26 +1100 Subject: [PATCH] fix max size of closed group back to 100 --- preload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preload.js b/preload.js index d59110f9d..3fa221dcb 100644 --- a/preload.js +++ b/preload.js @@ -85,7 +85,7 @@ window.CONSTANTS = new (function() { this.DEFAULT_PUBLIC_CHAT_URL = appConfig.get('defaultPublicChatServer'); this.MAX_LINKED_DEVICES = 1; this.MAX_CONNECTION_DURATION = 5000; - this.CLOSED_GROUP_SIZE_LIMIT = 20; + this.CLOSED_GROUP_SIZE_LIMIT = 100; // Number of seconds to turn on notifications after reconnect/start of app this.NOTIFICATION_ENABLE_TIMEOUT_SECONDS = 10; this.SESSION_ID_LENGTH = 66;