Convert expirationStartTimestamp to number

pull/749/head
lilia 9 years ago
parent 56aee5e8ef
commit 7eea88a545

@ -38250,7 +38250,7 @@ MessageReceiver.prototype.extend({
destination : destination, destination : destination,
timestamp : timestamp.toNumber(), timestamp : timestamp.toNumber(),
message : message, message : message,
expirationStartTimestamp : expirationStartTimestamp expirationStartTimestamp : expirationStartTimestamp.toNumber()
}; };
this.dispatchEvent(ev); this.dispatchEvent(ev);
}.bind(this)); }.bind(this));

@ -179,7 +179,7 @@ MessageReceiver.prototype.extend({
destination : destination, destination : destination,
timestamp : timestamp.toNumber(), timestamp : timestamp.toNumber(),
message : message, message : message,
expirationStartTimestamp : expirationStartTimestamp expirationStartTimestamp : expirationStartTimestamp.toNumber()
}; };
this.dispatchEvent(ev); this.dispatchEvent(ev);
}.bind(this)); }.bind(this));

Loading…
Cancel
Save