remove stale comment and simplify conversation creation

pull/381/head
sachaaaaa 6 years ago
parent 88c1454c18
commit bf8bb23683

@ -77,7 +77,6 @@
pairingAuthorisation,
});
const options = {};
// Send a empty message with information about how to contact us directly
const outgoingMessage = new textsecure.OutgoingMessage(
null, // server
Date.now(), // timestamp,

@ -563,23 +563,15 @@
}
// Validate pubKey
const c = new Whisper.Conversation({
id: secondaryDevicePubKey,
type: 'private',
});
const c = await ConversationController.getOrCreateAndWait(
secondaryDevicePubKey,
'private'
);
const validationError = c.validateNumber();
if (validationError) {
throw new Error('Invalid secondary device pubkey provided');
}
// Ensure there is a conversation existing
try {
await ConversationController.getOrCreateAndWait(
secondaryDevicePubKey,
'private'
);
} catch (e) {
window.log.error(e);
}
const signature = await libloki.crypto.generateSignatureForPairing(
secondaryDevicePubKey,
textsecure.protobuf.PairingAuthorisationMessage.Type.PAIRING_REQUEST

Loading…
Cancel
Save