So, 1 command sends a message to a channel using channel.send which contains some embeds and a button row. Now then the button is clicked I can handle the event no problem. But when I do a interaction.update I can not remove the embeds or rows. I am baffled. The message updates just fine. But the rest remains, even if I manually remove the values from the object and set the embeds to an empty object, they remain. Has anyone else seen this?
#Update rows and embeds on a channel.send message
18 messages · Page 1 of 1 (latest)
• What's your exact discord.js npm list discord.js and node node -v version?
• Post the full error stack trace, not just the top part!
• Show your code!
• Explain what exactly your issue is.
• Not a discord.js issue? Check out #useful-servers.
explicitly send the things you want to remove
it will just update what you send, since you only send embeds, it will only update the embeds, not the other properties
right, that explains the not changing embeds, ty, i miss those so often
So you mean like this?
content: "WTAF",
embeds: [],
components: []
});```
does it work?