From 4078d64520562c9359b5b96a6d3e85b0b976b387 Mon Sep 17 00:00:00 2001 From: Jeffrey <22608443+Jefffrey@users.noreply.github.com> Date: Thu, 18 Jun 2020 09:41:40 +1000 Subject: [PATCH] Fix reconnecting loop due to failed handshake on region change --- discord/voice_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/discord/voice_client.py b/discord/voice_client.py index f0d2fc807..047f54ae0 100644 --- a/discord/voice_client.py +++ b/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