So, I have the following code that has been running for months....
const collectorFilter = i => {
return selectionInteraction.user.id === interaction.user.id;
}
const confirmation = await roleSelectionMessage.awaitMessageComponent({ filter: collectorFilter, time: 60000 });
if (confirmation.customId === 'mySelectMenu') {
// do more stuff here
}
well that await component decided to not work on my linux server it has been running for months, if I run the bot on my machine it responds normally, anyone has any ideas as to what to look?
If anyone is curious am using the 14.8.0 version... could that be the cause?
thanks