mirror of
https://github.com/danbulant/discord.js
synced 2026-06-05 15:51:31 +00:00
Fix typo in MessageEmbed#video
This commit is contained in:
parent
dd3831fa1e
commit
f73e6a3e4d
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ class MessageEmbed {
|
||||||
this.image = data.image ? new MessageEmbedImage(this, data.image) : null;
|
this.image = data.image ? new MessageEmbedImage(this, data.image) : null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The image of this embed, if there is one
|
* The video of this embed, if there is one
|
||||||
* @type {?MessageEmbedVideo}
|
* @type {?MessageEmbedVideo}
|
||||||
*/
|
*/
|
||||||
this.video = data.video ? new MessageEmbedVideo(this, data.video) : null;
|
this.video = data.video ? new MessageEmbedVideo(this, data.video) : null;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue