Ошибка: Объект NoneType не имеет атрибута fetch_message
Код: Выделить всё
async def updatePost(userId, channelId, messageId):
print("Проверка")
user = await bot.fetch_user(userId)
print(channelId)
channel = bot.get_channel(int(channelId))
print(channel)
print(messageId)
message = await channel.fetch_message(messageId)
Подробнее здесь: https://stackoverflow.com/questions/784 ... -the-disco