diff --git a/js/views/invite_friends_dialog_view.js b/js/views/invite_friends_dialog_view.js index 1cc7c0ec0..ddf8d5745 100644 --- a/js/views/invite_friends_dialog_view.js +++ b/js/views/invite_friends_dialog_view.js @@ -74,7 +74,10 @@ newMembers.length + existingMembers.length > window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT ) { - const msg = window.i18n('maxGroupMembersError', window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT); + const msg = window.i18n( + 'maxGroupMembersError', + window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT + ); window.pushToast({ title: msg, diff --git a/libloki/api.js b/libloki/api.js index efbd6891b..4df0ec2be 100644 --- a/libloki/api.js +++ b/libloki/api.js @@ -154,16 +154,18 @@ } async function createGroupSyncProtoMessage(conversations) { // We only want to sync across closed groups that we haven't left - const sessionGroups = conversations.filter(c => c.isClosedGroup() && !c.get('left') && c.isFriend()); + const sessionGroups = conversations.filter( + c => c.isClosedGroup() && !c.get('left') && c.isFriend() + ); const rawGroups = await Promise.all( sessionGroups.map(async conversation => ({ - id: conversation.id, - name: conversation.get('name'), - members: conversation.get('members') || [], - blocked: conversation.isBlocked(), - expireTimer: conversation.get('expireTimer'), - admins: conversation.get('groupAdmins') || [], - })) + id: conversation.id, + name: conversation.get('name'), + members: conversation.get('members') || [], + blocked: conversation.isBlocked(), + expireTimer: conversation.get('expireTimer'), + admins: conversation.get('groupAdmins') || [], + })) ); // Convert raw groups to an array of buffers const groupDetails = rawGroups diff --git a/libtextsecure/account_manager.js b/libtextsecure/account_manager.js index d43b39ca3..4775bdd5e 100644 --- a/libtextsecure/account_manager.js +++ b/libtextsecure/account_manager.js @@ -635,7 +635,9 @@ } ); // Send group sync message - await textsecure.messaging.sendGroupSyncMessage(window.getConversations()) + await textsecure.messaging.sendGroupSyncMessage( + window.getConversations() + ); }, validatePubKeyHex(pubKey) { const c = new Whisper.Conversation({ diff --git a/libtextsecure/sendmessage.js b/libtextsecure/sendmessage.js index 40393a314..4e557ba93 100644 --- a/libtextsecure/sendmessage.js +++ b/libtextsecure/sendmessage.js @@ -702,7 +702,9 @@ MessageSender.prototype = { async sendGroupSyncMessage(conversations) { const ourNumber = textsecure.storage.user.getNumber(); - const syncMessage = await libloki.api.createGroupSyncProtoMessage(conversations); + const syncMessage = await libloki.api.createGroupSyncProtoMessage( + conversations + ); const contentMessage = new textsecure.protobuf.Content(); contentMessage.syncMessage = syncMessage; diff --git a/ts/components/session/LeftPaneChannelSection.tsx b/ts/components/session/LeftPaneChannelSection.tsx index 569d9bec1..fd543ebef 100644 --- a/ts/components/session/LeftPaneChannelSection.tsx +++ b/ts/components/session/LeftPaneChannelSection.tsx @@ -399,13 +399,18 @@ export class LeftPaneChannelSection extends React.Component { groupMembers: Array ) { // Validate groupName and groupMembers length - if (groupName.length === 0 || - groupName.length > window.CONSTANTS.MAX_GROUP_NAME_LENGTH) { - window.pushToast({ - title: window.i18n('invalidGroupName', window.CONSTANTS.MAX_GROUP_NAME_LENGTH), - type: 'error', - id: 'invalidGroupName', - }); + if ( + groupName.length === 0 || + groupName.length > window.CONSTANTS.MAX_GROUP_NAME_LENGTH + ) { + window.pushToast({ + title: window.i18n( + 'invalidGroupName', + window.CONSTANTS.MAX_GROUP_NAME_LENGTH + ), + type: 'error', + id: 'invalidGroupName', + }); return; } @@ -416,7 +421,10 @@ export class LeftPaneChannelSection extends React.Component { groupMembers.length >= window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT ) { window.pushToast({ - title: window.i18n('invalidGroupSize', window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT), + title: window.i18n( + 'invalidGroupSize', + window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT + ), type: 'error', id: 'invalidGroupSize', });