pull/877/head
Mikunj 5 years ago
parent a03185248c
commit d00abed7da

@ -131,7 +131,8 @@
if (deviceMapping.isPrimary === '0') { if (deviceMapping.isPrimary === '0') {
const { primaryDevicePubKey } = const { primaryDevicePubKey } =
authorisations.find( authorisations.find(
authorisation => authorisation && authorisation.secondaryDevicePubKey === pubKey authorisation =>
authorisation && authorisation.secondaryDevicePubKey === pubKey
) || {}; ) || {};
if (primaryDevicePubKey) { if (primaryDevicePubKey) {
// do NOT call getprimaryDeviceMapping recursively // do NOT call getprimaryDeviceMapping recursively

@ -1475,7 +1475,11 @@ MessageReceiver.prototype.extend({
const ourOtherDevices = await libloki.storage.getAllDevicePubKeysForPrimaryPubKey( const ourOtherDevices = await libloki.storage.getAllDevicePubKeysForPrimaryPubKey(
window.storage.get('primaryDevicePubKey') window.storage.get('primaryDevicePubKey')
); );
const ourDevices = new Set([ourNumber, ourPrimaryNumber, ...ourOtherDevices]); const ourDevices = new Set([
ourNumber,
ourPrimaryNumber,
...ourOtherDevices,
]);
const validSyncSender = ourDevices.has(envelope.source); const validSyncSender = ourDevices.has(envelope.source);
if (!validSyncSender) { if (!validSyncSender) {
throw new Error( throw new Error(

Loading…
Cancel
Save