From 0c690bc9497ed4b6125033cd140cd601ad18f288 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 8 Mar 2022 01:09:15 -0500 Subject: [PATCH] Fix audio not sending Fixes #7531 --- discord/gateway.py | 8 ++++---- discord/voice_client.py | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/discord/gateway.py b/discord/gateway.py index d681750c2..347d623d4 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -960,17 +960,17 @@ class DiscordVoiceWebSocket: # the ip is ascii starting at the 4th byte and ending at the first null ip_start = 4 ip_end = recv.index(0, ip_start) - state.endpoint_ip = recv[ip_start:ip_end].decode('ascii') + state.ip = recv[ip_start:ip_end].decode('ascii') - state.voice_port = struct.unpack_from('>H', recv, len(recv) - 2)[0] - _log.debug('detected ip: %s port: %s', state.endpoint_ip, state.voice_port) + state.port = struct.unpack_from('>H', recv, len(recv) - 2)[0] + _log.debug('detected ip: %s port: %s', state.ip, state.port) # there *should* always be at least one supported mode (xsalsa20_poly1305) modes = [mode for mode in data['modes'] if mode in self._connection.supported_modes] _log.debug('received supported encryption modes: %s', ", ".join(modes)) mode = modes[0] - await self.select_protocol(state.endpoint_ip, state.voice_port, mode) + await self.select_protocol(state.ip, state.port, mode) _log.info('selected the voice protocol for use (%s)', mode) @property diff --git a/discord/voice_client.py b/discord/voice_client.py index 96e52445f..37a268ba4 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -229,6 +229,8 @@ class VoiceClient(VoiceProtocol): channel: VocalGuildChannel endpoint_ip: str voice_port: int + ip: str + port: int secret_key: List[int] ssrc: int