您好,我正在尝试查看某个频道是否已经存在,而不是每次成员发送modmail请求时都创建一个新频道。我得到的错误是
EnvironmentPlugin
不确定为什么或方法不正确的一些方法。创建的通道名称是用户名和标识符。我要实现的目标是,如果该频道已经存在,不要在同一频道中创建另一个频道/帖子。
有帮助的人
这是我正在使用的代码:
File "C:\Users\User\Desktop\Build 1.0.2\cogs\modmail.py", line 145, in on_message
if get(modmailchannel, name=f"{message.author.name.lower()}{message.author.discriminator}"):
File "C:\Users\User\AppData\Local\Programs\Python\Python37\lib\site-packages\discord\utils.py", line 271, in get
for elem in iterable:
TypeError: 'TextChannel' object is not iterable
enter code here
答案 0 :(得分:1)
代替get(modmailchannel, name=f"{message.author.name.lower()}{message.author.discriminator}"):
使用:
if modmailchannel.name == f"{message.author.name.lower()}{message.author.discriminator}":