Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Passing strings for MessageEmbed#setFooter is deprecated

I'm getting this warning in the terminal when running my bot code:

(node:6220) DeprecationWarning: Passing strings for MessageEmbed#setFooter is deprecated. Pass a sole object instead.(Use node --trace-deprecation ... to show where the warning was created)

like image 795
4hm3d Avatar asked Jun 08 '26 06:06

4hm3d


1 Answers

D.JS v13 changes

// you used:
embed.setFooter("test")
// in discord.js v13:
embed.setFooter({
text: "test"
})
like image 183
cactusdev Avatar answered Jun 11 '26 14:06

cactusdev



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!