Androz2091 / discord-giveaways

🎉 Complete framework to facilitate the creation of giveaways using discord.js
https://discord-giveaways.js.org
MIT License
335 stars 127 forks source link

Warning when creating a giveaway: DeprecationWarning: Passing strings for MessageEmbed#setFooter is deprecated. #424

Closed GoudronViande24 closed 2 years ago

GoudronViande24 commented 2 years ago

Describe the bug
When you create a giveaway, the deprecation warning is sent.

Error

(node:10496) DeprecationWarning: Passing strings for MessageEmbed#setFooter is deprecated. Pass a sole object instead.

To Reproduce
Create a giveaway, example:

manager.start(channel, {
    duration: 60000,
    winnerCount,
    prize,
    hostedBy,
    messages
});

Expected behavior
Not send a deprecation warning and use the up to date way to work with Discord.js API

Additional context

GoudronViande24 commented 2 years ago

Nevermind, it was due to a bug with the update. After updating correctly, everything is fine.