mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-08 10:53:10 +00:00
Check if we're closed before attempting to do a reconnect.
This commit is contained in:
@ -234,11 +234,12 @@ class AutoShardedClient(Client):
|
||||
if self.is_closed():
|
||||
return
|
||||
|
||||
self._closed.set()
|
||||
|
||||
for shard in self.shards.values():
|
||||
yield from shard.ws.close()
|
||||
|
||||
yield from self.http.close()
|
||||
self._closed.set()
|
||||
|
||||
@asyncio.coroutine
|
||||
def change_presence(self, *, game=None, status=None, afk=False, shard_id=None):
|
||||
|
Reference in New Issue
Block a user