Fix closed group creation from secondary device

pull/834/head
Mikunj Varsani 5 years ago
parent d9c521b09d
commit 68f1ba543b

@ -1149,8 +1149,10 @@ MessageSender.prototype = {
proto.group.name = name; proto.group.name = name;
proto.group.members = members; proto.group.members = members;
const ourPK = textsecure.storage.user.getNumber(); const primaryDeviceKey =
proto.group.admins = [ourPK]; window.storage.get('primaryDevicePubKey') ||
textsecure.storage.user.getNumber();
proto.group.admins = [primaryDeviceKey];
return this.makeAttachmentPointer(avatar).then(attachment => { return this.makeAttachmentPointer(avatar).then(attachment => {
proto.group.avatar = attachment; proto.group.avatar = attachment;

Loading…
Cancel
Save