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