From cdc220fa4c050b80bd1841967013fb91491d893f Mon Sep 17 00:00:00 2001 From: Imayhaveborkedit Date: Fri, 4 Aug 2023 19:12:59 -0400 Subject: [PATCH] Fix voice websocket not being closed before being replaced --- discord/voice_client.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/discord/voice_client.py b/discord/voice_client.py index c438b5c0e..66fa1d2af 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -421,6 +421,11 @@ class VoiceClient(VoiceProtocol): self.finish_handshake() self._potentially_reconnecting = False + + if self.ws: + _log.debug("Closing existing voice websocket") + await self.ws.close() + try: self.ws = await self.connect_websocket() except (ConnectionClosed, asyncio.TimeoutError):