code:```js
if (message.content.includes("r_test")) {
message.react('👍').then(() => message.react('👎'));
const filter = (reaction, user) => {
return ['👍', '👎'].includes(reaction.emoji.name) && user.id === interaction.user.id;
};
message.awaitReactions({ filter, max: 1, time: 0, errors: ['time'] })
.then(collected => {
const reaction = collected.first();
if (reaction.emoji.name === '👍') {
message.channel.send('You reacted with a tick_mark up.');
} else {
message.channel.s('You reacted with a thumbs down.');
}
})
.catch(collected => {
message.reply('You reacted with neither a tick up, nor a thumbs down.');
});
}
when i react no reply?? why??