Markoudstaal / node-red-contrib-discord-advanced

Recieve, send, edit and delete Discord messages in node-red.
MIT License
46 stars 16 forks source link

Enable to create embed. #16

Closed yppdr closed 2 years ago

yppdr commented 2 years ago

After installing the plugin, I try to create an embed message. After several tests (even with the json provided as an example) I still have these two messages in my debug console.

image

Markoudstaal commented 2 years ago

This is my bad for not updating the documentation, sorry! The new version of discord handles embeds a bit different. Instead of the embed being the full message it's something you add to a message. Therefore you can now always have the msg.payload be some kind of text and add embeds to it.

To send an embed now you'll have to set msg.embed to the embed object or an array of objects.

image