From 41a2b5ed73aa5e39a6cd207a61c1aaaa69b8171e Mon Sep 17 00:00:00 2001 From: Jake Date: Sun, 5 Jun 2016 20:29:54 -0700 Subject: [PATCH] Actually read from the voice websocket & fix heartbeat. This change makes it so that the buffer doesn't fill and the voice server drops the socket. Also, use correct interval for voice websocket heartbeat. --- discord/gateway.py | 2 +- discord/voice_client.py | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/discord/gateway.py b/discord/gateway.py index a569e4642..3a81b9914 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -549,7 +549,7 @@ class DiscordVoiceWebSocket(websockets.client.WebSocketClientProtocol): data = msg.get('d') if op == self.READY: - interval = (data['heartbeat_interval'] / 100.0) - 5 + interval = data['heartbeat_interval'] / 1000.0 self._keep_alive = VoiceKeepAliveHandler(ws=self, interval=interval) self._keep_alive.start() yield from self.initial_connection(data) diff --git a/discord/voice_client.py b/discord/voice_client.py index d923cba0f..a49b3a350 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -225,6 +225,16 @@ class VoiceClient: self._connected.set() break + self.loop.create_task(self.poll_voice_ws()) + + @asyncio.coroutine + def poll_voice_ws(self): + """|coro| + Reads from the voice websocket while connected. + """ + while self._connected.is_set(): + yield from self.ws.poll_event() + @asyncio.coroutine def disconnect(self): """|coro|