multideviceprotocol-usage

pull/1247/head
Vincent 5 years ago
parent 9b07c8fc8e
commit 1b21191c3c

@ -14,7 +14,6 @@ import { onError } from './errors';
import {
handleContentMessage,
innerHandleContentMessage,
isBlocked,
onDeliveryReceipt,
} from './contentMessage';
import _ from 'lodash';

@ -4,6 +4,7 @@
import { PubKey } from '.';
import { UserUtil } from '../../util';
import { MultiDeviceProtocol } from '../protocols';
enum ClosedGroupType {
SMALL,
@ -44,7 +45,12 @@ class ClosedGroup {
console.warn(`ClosedGroup create: Cannot create a small group with more than ${window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT} members`);
}
const primaryDevice = UserUtil.getCurrentPrimaryDevicePubKey();
const user = await UserUtil.getCurrentDevicePubKey();
if (!user) {
return;
}
const primaryDevice = await MultiDeviceProtocol.getPrimaryDevice(user);
const allMembers = [primaryDevice, ...members];
// Create Group Identity

@ -10,15 +10,6 @@ export async function getCurrentDevicePubKey(): Promise<string | undefined> {
return item.value.split('.')[0];
}
export async function getCurrentPrimaryDevicePubKey(): Promise<string | undefined> {
const item = await getItemById('primaryDevicePubKey');
if (!item || !item.value) {
return undefined;
}
return item.value;
}
export async function getIdentityKeyPair(): Promise<KeyPair | undefined> {
const item = await getItemById('identityKey');

Loading…
Cancel
Save