Browse Source

Set closed state before actually finishing cleaning up.

pull/530/head
Rapptz 8 years ago
parent
commit
4160cd7d12
  1. 3
      discord/client.py

3
discord/client.py

@ -425,6 +425,8 @@ class Client:
if self.is_closed():
return
self._closed.set()
for voice in list(self.voice_clients):
try:
yield from voice.disconnect()
@ -439,7 +441,6 @@ class Client:
yield from self.http.close()
self._closed.set()
self._ready.clear()
@asyncio.coroutine

Loading…
Cancel
Save