revert embeds,..
This commit is contained in:
parent
e552d14305
commit
3cd243a50f
@ -189,22 +189,20 @@ class MessagePayload {
|
|||||||
this.options.attachments = attachments;
|
this.options.attachments = attachments;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.options.webembeds) {
|
if (this.options.embeds) {
|
||||||
//check if webembeds is an array
|
//check if embed is an array
|
||||||
if (!Array.isArray(this.options.embeds)) {
|
if (!Array.isArray(this.options.embeds)) {
|
||||||
this.options.embeds = [this.options.embeds];
|
this.options.embeds = [this.options.embeds];
|
||||||
}
|
}
|
||||||
|
|
||||||
//check if the webembeds is an array of WebEmbed
|
//check if the webembeds is an array of WebEmbed
|
||||||
if (!this.options.webembeds.every(e => e instanceof WebEmbed)) {
|
if (this.options.embeds.every(embed => embed instanceof WebEmbed)) {
|
||||||
throw new TypeError('WEB_EMBEDS_TYPE');
|
//while loop to make sure all embeds will be added to the content
|
||||||
}
|
while (this.options.embeds.length) {
|
||||||
|
const embed = this.options.embeds.shift();
|
||||||
//while loop to make sure all embeds will be added to the content
|
const data = await embed.toMessage();
|
||||||
while (this.options.webembeds.length) {
|
content +=`\n${data}`
|
||||||
const webembeds = this.options.webembeds.shift();
|
}
|
||||||
const data = await webembeds.toMessage();
|
|
||||||
content +=`\n${data}`
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user