From 720922cc71307d6259eb984141580e94e0bc4124 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 15 Feb 2021 15:36:14 +1100 Subject: [PATCH] be sure to leave a group when leaving from another device --- ts/receiver/closedGroups.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/ts/receiver/closedGroups.ts b/ts/receiver/closedGroups.ts index eb48040c5..e28637d99 100644 --- a/ts/receiver/closedGroups.ts +++ b/ts/receiver/closedGroups.ts @@ -744,9 +744,23 @@ async function handleClosedGroupMemberLeft( } if (didAdminLeave) { + window.SwarmPolling.removePubkey(groupPublicKey); + + await removeAllClosedGroupEncryptionKeyPairs(groupPublicKey); + // Disable typing + // if the admin was remove and we are the admin, it can only be voluntary + if (isCurrentUserAdmin) { + convo.set('left', true); + } else { + convo.set('isKickedFromGroup', true); + } + } + const didWeLeaveFromAnotherDevice = !members.includes(ourPubkey); + + if (didWeLeaveFromAnotherDevice) { await removeAllClosedGroupEncryptionKeyPairs(groupPublicKey); // Disable typing: - convo.set('isKickedFromGroup', true); + convo.set('left', true); window.SwarmPolling.removePubkey(groupPublicKey); }