mirror of
https://github.com/danbulant/discord.js
synced 2026-06-19 22:51:32 +00:00
Webpack build for branch master: fdb8f046b5
This commit is contained in:
parent
d5044f1843
commit
9db3e4b434
2 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
|
|
|
|||
2
discord.master.min.js
vendored
2
discord.master.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue