From 68f1ba543b60850303ea423db0a5c6c2061be766 Mon Sep 17 00:00:00 2001 From: Mikunj Varsani Date: Mon, 10 Feb 2020 19:55:49 +1100 Subject: [PATCH] Fix closed group creation from secondary device --- libtextsecure/sendmessage.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libtextsecure/sendmessage.js b/libtextsecure/sendmessage.js index e4cea3e27..0d30f83c3 100644 --- a/libtextsecure/sendmessage.js +++ b/libtextsecure/sendmessage.js @@ -1149,8 +1149,10 @@ MessageSender.prototype = { proto.group.name = name; proto.group.members = members; - const ourPK = textsecure.storage.user.getNumber(); - proto.group.admins = [ourPK]; + const primaryDeviceKey = + window.storage.get('primaryDevicePubKey') || + textsecure.storage.user.getNumber(); + proto.group.admins = [primaryDeviceKey]; return this.makeAttachmentPointer(avatar).then(attachment => { proto.group.avatar = attachment;