Browse Source

Fix reconnecting loop due to failed handshake on region change

pull/5059/head
Jeffrey 5 years ago
committed by Rapptz
parent
commit
4078d64520
  1. 1
      discord/voice_client.py

1
discord/voice_client.py

@ -202,6 +202,7 @@ class VoiceClient:
if self._handshake_complete.is_set():
# terminate the websocket and handle the reconnect loop if necessary.
self._handshake_complete.clear()
self._handshaking = False
await self.ws.close(4000)
return

Loading…
Cancel
Save