Browse Source

Clear the connected flag when potentially reconnecting the player

Fix #5953
pull/6076/head
Rapptz 4 years ago
parent
commit
52865dfa99
  1. 2
      discord/voice_client.py

2
discord/voice_client.py

@ -365,6 +365,8 @@ class VoiceClient(VoiceProtocol):
self._runner = self.loop.create_task(self.poll_voice_ws(reconnect))
async def potential_reconnect(self):
# Attempt to stop the player thread from playing early
self._connected.clear()
self.prepare_handshake()
self._potentially_reconnecting = True
try:

Loading…
Cancel
Save