replace double with triple equals

pull/20/head
sachaaaaa 7 years ago
parent 3481c0e58f
commit 666cb1d3cb

@ -441,7 +441,7 @@ MessageReceiver.prototype.extend({
getEnvelopeId(envelope) { getEnvelopeId(envelope) {
return `${envelope.source}.${ return `${envelope.source}.${
envelope.sourceDevice envelope.sourceDevice
} ${envelope.timestamp.toNumber()}`; } ${envelope.timestamp.toNumber()}`;
}, },
async getAllFromCache() { async getAllFromCache() {
window.log.info('getAllFromCache'); window.log.info('getAllFromCache');
@ -653,9 +653,9 @@ MessageReceiver.prototype.extend({
case textsecure.protobuf.Envelope.Type.CIPHERTEXT: case textsecure.protobuf.Envelope.Type.CIPHERTEXT:
window.log.info('message from', this.getEnvelopeId(envelope)); window.log.info('message from', this.getEnvelopeId(envelope));
promise = Promise.resolve(ciphertext.toArrayBuffer())//;sessionCipher promise = Promise.resolve(ciphertext.toArrayBuffer())//;sessionCipher
// TODO: restore decryption & unpadding (?) // TODO: restore decryption & unpadding (?)
//.decryptWhisperMessage(ciphertext) //.decryptWhisperMessage(ciphertext)
//.then(this.unpad); //.then(this.unpad);
break; break;
case textsecure.protobuf.Envelope.Type.FRIEND_REQUEST: case textsecure.protobuf.Envelope.Type.FRIEND_REQUEST:
window.log.info('friend-request message from ', envelope.source) window.log.info('friend-request message from ', envelope.source)
@ -752,7 +752,7 @@ MessageReceiver.prototype.extend({
const isMe = envelope.source === textsecure.storage.user.getNumber(); const isMe = envelope.source === textsecure.storage.user.getNumber();
const isLeavingGroup = Boolean( const isLeavingGroup = Boolean(
message.group && message.group &&
message.group.type === textsecure.protobuf.GroupContext.Type.QUIT message.group.type === textsecure.protobuf.GroupContext.Type.QUIT
); );
if (groupId && isBlocked && !(isMe && isLeavingGroup)) { if (groupId && isBlocked && !(isMe && isLeavingGroup)) {
@ -793,7 +793,7 @@ MessageReceiver.prototype.extend({
const isMe = envelope.source === textsecure.storage.user.getNumber(); const isMe = envelope.source === textsecure.storage.user.getNumber();
const isLeavingGroup = Boolean( const isLeavingGroup = Boolean(
message.group && message.group &&
message.group.type === textsecure.protobuf.GroupContext.Type.QUIT message.group.type === textsecure.protobuf.GroupContext.Type.QUIT
); );
if (groupId && isBlocked && !(isMe && isLeavingGroup)) { if (groupId && isBlocked && !(isMe && isLeavingGroup)) {
@ -837,7 +837,7 @@ MessageReceiver.prototype.extend({
}); });
}, },
async promptUserToAcceptFriendRequest(pubKey, message) { async promptUserToAcceptFriendRequest(pubKey, message) {
pubKey = pubKey.slice(0,30)+"..."; pubKey = pubKey.slice(0, 30) + "...";
let p = new Promise(resolve => { let p = new Promise(resolve => {
window.Whisper.events.trigger('showFriendRequest', { window.Whisper.events.trigger('showFriendRequest', {
pubKey, pubKey,
@ -855,12 +855,12 @@ MessageReceiver.prototype.extend({
async innerHandleContentMessage(envelope, plaintext) { async innerHandleContentMessage(envelope, plaintext) {
const content = textsecure.protobuf.Content.decode(plaintext); const content = textsecure.protobuf.Content.decode(plaintext);
if (envelope.type == textsecure.protobuf.Envelope.Type.FRIEND_REQUEST) { if (envelope.type === textsecure.protobuf.Envelope.Type.FRIEND_REQUEST) {
// only prompt friend request if there is no conversation yet // only prompt friend request if there is no conversation yet
let conversation; let conversation;
try { try {
conversation = ConversationController.get(envelope.source); conversation = ConversationController.get(envelope.source);
} catch(e) { } catch (e) {
} }
if (!conversation) { if (!conversation) {
const accepted = await this.promptUserToAcceptFriendRequest(envelope.source, content.dataMessage.body); const accepted = await this.promptUserToAcceptFriendRequest(envelope.source, content.dataMessage.body);
@ -1102,7 +1102,7 @@ MessageReceiver.prototype.extend({
async handlePreKeyBundleMessage(envelope, preKeyBundleMessage) { async handlePreKeyBundleMessage(envelope, preKeyBundleMessage) {
const { preKeyId, signedKeyId } = preKeyBundleMessage; const { preKeyId, signedKeyId } = preKeyBundleMessage;
const [ identityKey, preKey, signedKey, signature ] = [ const [identityKey, preKey, signedKey, signature] = [
preKeyBundleMessage.identityKey, preKeyBundleMessage.identityKey,
preKeyBundleMessage.preKey, preKeyBundleMessage.preKey,
preKeyBundleMessage.signedKey, preKeyBundleMessage.signedKey,

Loading…
Cancel
Save