fix max size of closed group back to 100

pull/1495/head
Audric Ackermann 4 years ago
parent 608345f7f0
commit 0d3e515843
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -94,7 +94,7 @@ window.CONSTANTS = new (function () {
this.DEFAULT_PUBLIC_CHAT_URL = appConfig.get('defaultPublicChatServer'); this.DEFAULT_PUBLIC_CHAT_URL = appConfig.get('defaultPublicChatServer');
this.MAX_LINKED_DEVICES = 1; this.MAX_LINKED_DEVICES = 1;
this.MAX_CONNECTION_DURATION = 5000; 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 // Number of seconds to turn on notifications after reconnect/start of app
this.NOTIFICATION_ENABLE_TIMEOUT_SECONDS = 10; this.NOTIFICATION_ENABLE_TIMEOUT_SECONDS = 10;
this.SESSION_ID_LENGTH = 66; this.SESSION_ID_LENGTH = 66;

Loading…
Cancel
Save