Both devices to update their mapping after secondary registration

pull/534/head
sachaaaaa 6 years ago
parent 4929f8d8db
commit a314721cce

@ -1,4 +1,4 @@
/* global Whisper, $, getAccountManager, textsecure, i18n, passwordUtil, _ */
/* global Whisper, $, getAccountManager, textsecure, i18n, passwordUtil, _, lokiFileServerAPI */
/* eslint-disable more/no-then */
@ -137,8 +137,9 @@
const language = this.$('#mnemonic-display-language').val();
this.showProfilePage(mnemonic, language);
},
onSecondaryDeviceRegistered() {
async onSecondaryDeviceRegistered() {
clearInterval(this.pairingInterval);
await lokiFileServerAPI.updateOurDeviceMapping();
// Ensure the left menu is updated
Whisper.events.trigger('userChanged', { isSecondaryDevice: true });
this.$el.trigger('openInbox');

@ -3,6 +3,7 @@
textsecure,
libsignal,
libloki,
lokiFileServerAPI,
mnemonic,
btoa,
Signal,
@ -622,6 +623,7 @@
};
// Update authorisation in database with the new grant signature
await libloki.storage.savePairingAuthorisation(authorisation);
await lokiFileServerAPI.updateOurDeviceMapping();
await libloki.api.sendPairingAuthorisation(
authorisation,
secondaryDevicePubKey

Loading…
Cancel
Save