TypeError:message.guild.channels.find不是函数

时间:2020-05-14 13:50:38

标签: discord.js

搜索频道时出现错误。

代码:

TypeError: message.guild.channels.find is not a function

错误:

{{1}}

我希望有人能帮助我! :-)

1 个答案:

答案 0 :(得分:0)

您可能正在使用过时的代码。在discord.js版本12 .channels中进行了更改。版本12中的等效代码行为:

    let logschannel = message.guild.channels.cache.find(channel => channel.name === 'logs');

我建议您查看guide for updating discord.js code from v11 to v12