Fix sync message timestamps
This commit is contained in:
parent
d1bcafad65
commit
c4fa2cb935
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@
|
||||||
var type = 'incoming';
|
var type = 'incoming';
|
||||||
if (pushMessageContent.sync) {
|
if (pushMessageContent.sync) {
|
||||||
type = 'outgoing';
|
type = 'outgoing';
|
||||||
timestamp = pushMessageContent.sync.timestamp;
|
timestamp = pushMessageContent.sync.timestamp.toNumber();
|
||||||
}
|
}
|
||||||
var now = new Date().getTime();
|
var now = new Date().getTime();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue