尝试创建频道时,“ TextChannel类型的对象不可JSON序列化”

时间:2020-09-22 15:45:01

标签: python discord discord.py-rewrite

我正在尝试做到这一点,因此,如果删除频道,则将在一个小时后重新制作。但是当我使用此代码时:

async def on_guild_channel_delete(channel): 
            guild = channel.guild                   
      await guild.create_text_channel(channel)

它返回:Object of type TextChannel is not JSON serializable

反正有解决此问题的方法吗?

1 个答案:

答案 0 :(得分:1)

Get the channels namestr

await guild.create_text_channel(str(channel))