pull/877/head
Mikunj 5 years ago
parent abf298ba25
commit f35493ce9f

@ -74,7 +74,10 @@
newMembers.length + existingMembers.length > newMembers.length + existingMembers.length >
window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT 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({ window.pushToast({
title: msg, title: msg,

@ -154,16 +154,18 @@
} }
async function createGroupSyncProtoMessage(conversations) { async function createGroupSyncProtoMessage(conversations) {
// We only want to sync across closed groups that we haven't left // 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( const rawGroups = await Promise.all(
sessionGroups.map(async conversation => ({ sessionGroups.map(async conversation => ({
id: conversation.id, id: conversation.id,
name: conversation.get('name'), name: conversation.get('name'),
members: conversation.get('members') || [], members: conversation.get('members') || [],
blocked: conversation.isBlocked(), blocked: conversation.isBlocked(),
expireTimer: conversation.get('expireTimer'), expireTimer: conversation.get('expireTimer'),
admins: conversation.get('groupAdmins') || [], admins: conversation.get('groupAdmins') || [],
})) }))
); );
// Convert raw groups to an array of buffers // Convert raw groups to an array of buffers
const groupDetails = rawGroups const groupDetails = rawGroups

@ -635,7 +635,9 @@
} }
); );
// Send group sync message // Send group sync message
await textsecure.messaging.sendGroupSyncMessage(window.getConversations()) await textsecure.messaging.sendGroupSyncMessage(
window.getConversations()
);
}, },
validatePubKeyHex(pubKey) { validatePubKeyHex(pubKey) {
const c = new Whisper.Conversation({ const c = new Whisper.Conversation({

@ -702,7 +702,9 @@ MessageSender.prototype = {
async sendGroupSyncMessage(conversations) { async sendGroupSyncMessage(conversations) {
const ourNumber = textsecure.storage.user.getNumber(); 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(); const contentMessage = new textsecure.protobuf.Content();
contentMessage.syncMessage = syncMessage; contentMessage.syncMessage = syncMessage;

@ -399,13 +399,18 @@ export class LeftPaneChannelSection extends React.Component<Props, State> {
groupMembers: Array<ContactType> groupMembers: Array<ContactType>
) { ) {
// Validate groupName and groupMembers length // Validate groupName and groupMembers length
if (groupName.length === 0 || if (
groupName.length > window.CONSTANTS.MAX_GROUP_NAME_LENGTH) { groupName.length === 0 ||
window.pushToast({ groupName.length > window.CONSTANTS.MAX_GROUP_NAME_LENGTH
title: window.i18n('invalidGroupName', window.CONSTANTS.MAX_GROUP_NAME_LENGTH), ) {
type: 'error', window.pushToast({
id: 'invalidGroupName', title: window.i18n(
}); 'invalidGroupName',
window.CONSTANTS.MAX_GROUP_NAME_LENGTH
),
type: 'error',
id: 'invalidGroupName',
});
return; return;
} }
@ -416,7 +421,10 @@ export class LeftPaneChannelSection extends React.Component<Props, State> {
groupMembers.length >= window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT groupMembers.length >= window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT
) { ) {
window.pushToast({ window.pushToast({
title: window.i18n('invalidGroupSize', window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT), title: window.i18n(
'invalidGroupSize',
window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT
),
type: 'error', type: 'error',
id: 'invalidGroupSize', id: 'invalidGroupSize',
}); });

Loading…
Cancel
Save