Replies: 3 comments 1 reply
-
Get better Internet. |
Beta Was this translation helpful? Give feedback.
-
Enable logging as per the documentation so that you can see the voice lifecycle. It'll help you (and us) figure out what's wrong. |
Beta Was this translation helpful? Give feedback.
-
This was solved in the discord.py server. For those who come here with the same issue, the author was changing presences in a loop like so: while True:
await bot.change_presence(activity=discord.Game('name')) This exhausted the rate limit of the gateway websocket and it had to wait a minute for the rate limit to pass. The solution to this problem is to sleep between presence changes so the gateway can still do other operations. while True:
await bot.change_presence(activity=discord.Game('name'))
await asyncio.sleep(60 * 60 * 12) # 12 hours |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When I use await channel.connect() method and disconnect(), it takes about a minute to connect & disconnect from the vc. What should I do?
Beta Was this translation helpful? Give feedback.
All reactions