diff --git a/config/swarm-testing.json b/config/swarm-testing.json index 9bdd086d9..9df9b3340 100644 --- a/config/swarm-testing.json +++ b/config/swarm-testing.json @@ -1,12 +1,11 @@ { - "storageProfile": "swarm-testing", - "seedNodeList": [ - { - "ip": "localhost", - "port": "22129" - } - ], - "openDevTools": true, - "defaultPublicChatServer": "https://team-chat.lokinet.org/" - } - \ No newline at end of file + "storageProfile": "swarm-testing", + "seedNodeList": [ + { + "ip": "localhost", + "port": "22129" + } + ], + "openDevTools": true, + "defaultPublicChatServer": "https://team-chat.lokinet.org/" +} diff --git a/config/swarm-testing2.json b/config/swarm-testing2.json index e3799a713..5469d9dab 100644 --- a/config/swarm-testing2.json +++ b/config/swarm-testing2.json @@ -1,12 +1,11 @@ { - "storageProfile": "swarm-testing2", - "seedNodeList": [ - { - "ip": "localhost", - "port": "22129" - } - ], - "openDevTools": true, - "defaultPublicChatServer": "https://team-chat.lokinet.org/" - } - \ No newline at end of file + "storageProfile": "swarm-testing2", + "seedNodeList": [ + { + "ip": "localhost", + "port": "22129" + } + ], + "openDevTools": true, + "defaultPublicChatServer": "https://team-chat.lokinet.org/" +} diff --git a/js/views/create_group_dialog_view.js b/js/views/create_group_dialog_view.js index a2863e061..8b5864e1b 100644 --- a/js/views/create_group_dialog_view.js +++ b/js/views/create_group_dialog_view.js @@ -110,7 +110,7 @@ let existingMembers = groupConvo.get('members'); // Show a contact if they are our friend or if they are a member - let friendsAndMembers = convos.filter( + const friendsAndMembers = convos.filter( d => (d.isFriend() || existingMembers.includes(d.id)) && d.isPrivate() && diff --git a/libloki/api.js b/libloki/api.js index 54a7a2100..858a247de 100644 --- a/libloki/api.js +++ b/libloki/api.js @@ -226,7 +226,6 @@ // Send const options = { messageType: 'pairing-request' }; const p = new Promise((resolve, reject) => { - const timestamp = Date.now(); const outgoingMessage = new textsecure.OutgoingMessage( diff --git a/libtextsecure/outgoing_message.js b/libtextsecure/outgoing_message.js index 5761253aa..a133c0bce 100644 --- a/libtextsecure/outgoing_message.js +++ b/libtextsecure/outgoing_message.js @@ -414,7 +414,6 @@ OutgoingMessage.prototype = { let content; let type; - let destinationRegistrationId; if (window.lokiFeatureFlags.useSealedSender) { const secretSessionCipher = new window.Signal.Metadata.SecretSessionCipher( @@ -436,8 +435,6 @@ OutgoingMessage.prototype = { type = textsecure.protobuf.Envelope.Type.UNIDENTIFIED_SENDER; content = window.Signal.Crypto.arrayBufferToBase64(ciphertext); - - destinationRegistrationId = null; } else { // TODO: probably remove this branch once // mobile clients implement sealed sender @@ -454,7 +451,6 @@ OutgoingMessage.prototype = { // eslint-disable-next-line prefer-destructuring type = ciphertext.type; content = ciphertext.body; - destinationRegistrationId = ciphertext.registrationId; } const ttl = getTTLForType(thisDeviceMessageType); @@ -464,7 +460,6 @@ OutgoingMessage.prototype = { ttl, ourKey, sourceDevice: 1, - destinationRegistrationId, content, pubKey: devicePubKey, };