lint after manual merge

pull/509/head
sachaaaaa 6 years ago
parent 0426d85e7a
commit d3653e8665

@ -211,7 +211,7 @@
let specialConvInited = false;
const initSpecialConversations = async () => {
if (specialConvInited) {
return
return;
}
const rssFeedConversations = await window.Signal.Data.getAllRssFeedConversations(
{

@ -231,7 +231,7 @@
FallBackSessionCipher,
FallBackDecryptionError,
snodeCipher,
  decryptToken,
decryptToken,
generateSignatureForPairing,
verifyPairingAuthorisation,
// for testing

@ -1190,14 +1190,17 @@ MessageReceiver.prototype.extend({
const contactBuffer = new ContactBuffer(attachmentPointer.data);
let contactDetails = contactBuffer.next();
// Extract just the pubkeys
const friendPubKeys = []
const friendPubKeys = [];
while (contactDetails !== undefined) {
friendPubKeys.push(contactDetails.number);
contactDetails = contactBuffer.next();
}
return Promise.all(
friendPubKeys.map(async pubKey => {
const c = await window.ConversationController.getOrCreateAndWait(pubKey, 'private');
const c = await window.ConversationController.getOrCreateAndWait(
pubKey,
'private'
);
if (!c) {
return null;
}

Loading…
Cancel
Save