Я пытаюсь получить список пользователей, которые отреагировали на сообщение в указанное c время, это мой код и ошибка
c.messages.fetch(msgId).then(async themessage => {
for (const reaction of themessage.reactions.cache)
{
for (let user of await reaction.fetchMembers())
{
console.log(user);
}
console.log(reaction);
}
});
Ошибка:
UnhandledPromiseRejectionWarning: TypeError: reaction.fetchMembers is not a function