Ensure that we can't miss the apisReady event and only listen for single emit

pull/601/head
Beaudan Brown 5 years ago
parent 7e275ac266
commit 41fdcef695

@ -233,9 +233,8 @@
specialConvInited = true; specialConvInited = true;
}; };
let initialisedAPI = false;
const initAPIs = async () => { const initAPIs = async () => {
if (initialisedAPI) { if (window.initialisedAPI) {
return; return;
} }
const ourKey = textsecure.storage.user.getNumber(); const ourKey = textsecure.storage.user.getNumber();
@ -257,7 +256,7 @@
}); });
window.lokiP2pAPI.on('online', ConversationController._handleOnline); window.lokiP2pAPI.on('online', ConversationController._handleOnline);
window.lokiP2pAPI.on('offline', ConversationController._handleOffline); window.lokiP2pAPI.on('offline', ConversationController._handleOffline);
initialisedAPI = true; window.initialisedAPI = true;
if (storage.get('isSecondaryDevice')) { if (storage.get('isSecondaryDevice')) {
window.lokiFileServerAPI.updateOurDeviceMapping(); window.lokiFileServerAPI.updateOurDeviceMapping();

@ -1130,11 +1130,15 @@ MessageReceiver.prototype.extend({
// This call already removes the envelope from the cache // This call already removes the envelope from the cache
await this.handleContacts(envelope, syncMessage.contacts); await this.handleContacts(envelope, syncMessage.contacts);
removedFromCache = true; removedFromCache = true;
if (window.initialisedAPI) {
await this.sendFriendRequestsToSyncContacts(syncMessage.contacts);
} else {
// We need to wait here because initAPIs hasn't been called yet // We need to wait here because initAPIs hasn't been called yet
Whisper.events.on('apisReady', async () => { Whisper.events.once('apisReady', async () => {
await this.sendFriendRequestsToSyncContacts(syncMessage.contacts); await this.sendFriendRequestsToSyncContacts(syncMessage.contacts);
}); });
} }
}
} else { } else {
window.log.warn('Unimplemented pairing authorisation message type'); window.log.warn('Unimplemented pairing authorisation message type');
} }

@ -42,6 +42,7 @@ window.JobQueue = JobQueue;
window.getStoragePubKey = key => window.getStoragePubKey = key =>
window.isDev() ? key.substring(0, key.length - 2) : key; window.isDev() ? key.substring(0, key.length - 2) : key;
window.getDefaultFileServer = () => config.defaultFileServer; window.getDefaultFileServer = () => config.defaultFileServer;
window.initialisedAPI = false;
window.isBeforeVersion = (toCheck, baseVersion) => { window.isBeforeVersion = (toCheck, baseVersion) => {
try { try {

Loading…
Cancel
Save