mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
fix(Embed): Reference video in video (#8473)
This commit is contained in:
@@ -115,10 +115,10 @@ class Embed {
|
||||
get video() {
|
||||
if (!this.data.video) return null;
|
||||
return {
|
||||
url: this.data.image.url,
|
||||
proxyURL: this.data.image.proxy_url,
|
||||
height: this.data.image.height,
|
||||
width: this.data.image.width,
|
||||
url: this.data.video.url,
|
||||
proxyURL: this.data.video.proxy_url,
|
||||
height: this.data.video.height,
|
||||
width: this.data.video.width,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user