Convert expirationStartTimestamp to number
This commit is contained in:
parent
56aee5e8ef
commit
7eea88a545
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue