|
|
@ -414,7 +414,6 @@ OutgoingMessage.prototype = {
|
|
|
|
|
|
|
|
|
|
|
|
let content;
|
|
|
|
let content;
|
|
|
|
let type;
|
|
|
|
let type;
|
|
|
|
let destinationRegistrationId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (window.lokiFeatureFlags.useSealedSender) {
|
|
|
|
if (window.lokiFeatureFlags.useSealedSender) {
|
|
|
|
const secretSessionCipher = new window.Signal.Metadata.SecretSessionCipher(
|
|
|
|
const secretSessionCipher = new window.Signal.Metadata.SecretSessionCipher(
|
|
|
@ -436,8 +435,6 @@ OutgoingMessage.prototype = {
|
|
|
|
|
|
|
|
|
|
|
|
type = textsecure.protobuf.Envelope.Type.UNIDENTIFIED_SENDER;
|
|
|
|
type = textsecure.protobuf.Envelope.Type.UNIDENTIFIED_SENDER;
|
|
|
|
content = window.Signal.Crypto.arrayBufferToBase64(ciphertext);
|
|
|
|
content = window.Signal.Crypto.arrayBufferToBase64(ciphertext);
|
|
|
|
|
|
|
|
|
|
|
|
destinationRegistrationId = null;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// TODO: probably remove this branch once
|
|
|
|
// TODO: probably remove this branch once
|
|
|
|
// mobile clients implement sealed sender
|
|
|
|
// mobile clients implement sealed sender
|
|
|
@ -454,7 +451,6 @@ OutgoingMessage.prototype = {
|
|
|
|
// eslint-disable-next-line prefer-destructuring
|
|
|
|
// eslint-disable-next-line prefer-destructuring
|
|
|
|
type = ciphertext.type;
|
|
|
|
type = ciphertext.type;
|
|
|
|
content = ciphertext.body;
|
|
|
|
content = ciphertext.body;
|
|
|
|
destinationRegistrationId = ciphertext.registrationId;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const ttl = getTTLForType(thisDeviceMessageType);
|
|
|
|
const ttl = getTTLForType(thisDeviceMessageType);
|
|
|
@ -464,7 +460,6 @@ OutgoingMessage.prototype = {
|
|
|
|
ttl,
|
|
|
|
ttl,
|
|
|
|
ourKey,
|
|
|
|
ourKey,
|
|
|
|
sourceDevice: 1,
|
|
|
|
sourceDevice: 1,
|
|
|
|
destinationRegistrationId,
|
|
|
|
|
|
|
|
content,
|
|
|
|
content,
|
|
|
|
pubKey: devicePubKey,
|
|
|
|
pubKey: devicePubKey,
|
|
|
|
};
|
|
|
|
};
|
|
|
|