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

@ -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,

@ -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

@ -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({

@ -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;

@ -399,13 +399,18 @@ export class LeftPaneChannelSection extends React.Component<Props, State> {
groupMembers: Array<ContactType>
) {
// 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<Props, State> {
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',
});

Loading…
Cancel
Save