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,
|
||||
timestamp : timestamp.toNumber(),
|
||||
message : message,
|
||||
expirationStartTimestamp : expirationStartTimestamp
|
||||
expirationStartTimestamp : expirationStartTimestamp.toNumber()
|
||||
};
|
||||
this.dispatchEvent(ev);
|
||||
}.bind(this));
|
||||
|
|
|
@ -179,7 +179,7 @@ MessageReceiver.prototype.extend({
|
|||
destination : destination,
|
||||
timestamp : timestamp.toNumber(),
|
||||
message : message,
|
||||
expirationStartTimestamp : expirationStartTimestamp
|
||||
expirationStartTimestamp : expirationStartTimestamp.toNumber()
|
||||
};
|
||||
this.dispatchEvent(ev);
|
||||
}.bind(this));
|
||||
|
|
Loading…
Reference in a new issue