Webpack build for branch master: fdb8f046b5

This commit is contained in:
Travis CI 2017-07-16 15:57:36 +00:00
parent d5044f1843
commit 9db3e4b434
2 changed files with 3 additions and 3 deletions

View file

@ -9054,7 +9054,7 @@ class MessageEmbed {
* @returns {MessageEmbed} This embed
*/
setTimestamp(timestamp = new Date()) {
this.timestamp = timestamp;
this.timestamp = timestamp.getTime();
return this;
}
@ -9086,7 +9086,7 @@ class MessageEmbed {
type: 'rich',
description: this.description,
url: this.url,
timestamp: this.timestamp,
timestamp: this.timestamp ? new Date(this.timestamp) : null,
color: this.color,
fields: this.fields,
files: this.files,

File diff suppressed because one or more lines are too long