Convert expirationStartTimestamp to number
This commit is contained in:
@@ -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));
|
||||||
|
Reference in New Issue
Block a user