Early preparations for PNP Contact Merging
This commit is contained in:
parent
2f5dd73e58
commit
faf6c41332
30 changed files with 1572 additions and 447 deletions
|
@ -2501,11 +2501,11 @@ export function buildMigrationBubble(
|
|||
...(newAttributes.membersV2 || []).map(item => item.uuid),
|
||||
...(newAttributes.pendingMembersV2 || []).map(item => item.uuid),
|
||||
].map(uuid => {
|
||||
const conversationId = window.ConversationController.ensureContactIds({
|
||||
const conversation = window.ConversationController.lookupOrCreate({
|
||||
uuid,
|
||||
});
|
||||
strictAssert(conversationId, `Conversation not found for ${uuid}`);
|
||||
return conversationId;
|
||||
strictAssert(conversation, `Conversation not found for ${uuid}`);
|
||||
return conversation.id;
|
||||
});
|
||||
const droppedMemberIds: Array<string> = difference(
|
||||
previousGroupV1MembersIds,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue