#channel exists
1 messages · Page 1 of 1 (latest)
Hey! Once your issue is solved, press the button below to close this thread!
just fetch a channel and check if the returning object is None
channel = await client.fetch_channel(id)
if channel == None:
print("Channel does not exists")
ok thanks