Browse Source

Moved http.close to before _closed.set

pull/1967/head
NCPlayz 6 years ago
parent
commit
8b8e9a619e
  1. 3
      discord/client.py

3
discord/client.py

@ -440,6 +440,7 @@ class Client:
if self.is_closed():
return
await self.http.close()
self._closed.set()
for voice in self.voice_clients:
@ -452,8 +453,6 @@ class Client:
if self.ws is not None and self.ws.open:
await self.ws.close()
await self.http.close()
self._ready.clear()
def clear(self):

Loading…
Cancel
Save