首页 > 解决方案 > UnhandledPromiseRejectionWarning: DiscordAPIError: Invalid Form Body around: Value "channel" is not snowflake

问题描述

我有这个代码:

let channel = this.textChannel.id;
this.textChannel.messages.fetch({around: "channel", limit: 1})
    .then(messages => {
        messages.first().edit(nowplaying);
    });

但是当我运行它时,我得到了错误

UnhandledPromiseRejectionWarning: DiscordAPIError: Invalid Form Body around:
Value “channel” is not snowflake

希望可以有人帮帮我。

标签: javascript

解决方案


推荐阅读