Read receipts: Log sender and timestamp when related msg not found

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-07-24 12:27:48 -07:00
parent c6bc167975
commit f38d715250
4 changed files with 9 additions and 6 deletions

View file

@ -32,7 +32,10 @@
this.remove(receipt);
}.bind(this));
} else {
console.log('No message for read receipt');
console.log(
'No message for read receipt',
receipt.get('sender'), receipt.get('timestamp')
);
}
}.bind(this));
},