Break up long line
// FREEBIE
This commit is contained in:
parent
2506b2115d
commit
2f90645142
1 changed files with 5 additions and 1 deletions
|
@ -280,7 +280,11 @@
|
||||||
var timestamp = pushMessage.timestamp.toNumber();
|
var timestamp = pushMessage.timestamp.toNumber();
|
||||||
var messages = new Whisper.MessageCollection();
|
var messages = new Whisper.MessageCollection();
|
||||||
var groups = new Whisper.ConversationCollection();
|
var groups = new Whisper.ConversationCollection();
|
||||||
console.log('delivery receipt from', pushMessage.source + '.' + pushMessage.sourceDevice, timestamp);
|
console.log(
|
||||||
|
'delivery receipt from',
|
||||||
|
pushMessage.source + '.' + pushMessage.sourceDevice,
|
||||||
|
timestamp
|
||||||
|
);
|
||||||
|
|
||||||
groups.fetchGroups(pushMessage.source).then(function() {
|
groups.fetchGroups(pushMessage.source).then(function() {
|
||||||
messages.fetchSentAt(timestamp).then(function() {
|
messages.fetchSentAt(timestamp).then(function() {
|
||||||
|
|
Loading…
Reference in a new issue