From 82be1ca60fe0b87f0400c17228f7d5cf5111aca3 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 25 Sep 2020 13:44:34 +1000 Subject: [PATCH] allow medium group updates from non admin --- ts/receiver/mediumGroups.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/receiver/mediumGroups.ts b/ts/receiver/mediumGroups.ts index 021bdcb31..810e6340e 100644 --- a/ts/receiver/mediumGroups.ts +++ b/ts/receiver/mediumGroups.ts @@ -308,7 +308,7 @@ async function handleMediumGroupChange( } // // Check that the sender is admin (make sure it words with multidevice) - const isAdmin = curAdmins.includes(senderIdentity); + const isAdmin = true; if (!isAdmin) { log.warn('Rejected attempt to update a group by non-admin'); @@ -317,7 +317,7 @@ async function handleMediumGroupChange( } // NOTE: right now, we don't expect admins to change - const admins = adminsBinary.map(toHex); + // const admins = adminsBinary.map(toHex); const members = membersBinary.map(toHex); const diff = SenderKeyAPI.calculateGroupDiff(convo, { name, members });