From 1e6d85616ac7f273857b6aef56a507fc50c70148 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Thu, 11 Sep 2025 08:55:19 -0400 Subject: [PATCH] Fix sending the proper proposal result code --- discord/gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/gateway.py b/discord/gateway.py index aadb516fb..ccb58f0a6 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -1043,7 +1043,7 @@ class DiscordVoiceWebSocket: ) if isinstance(result, davey.CommitWelcome): await self.send_binary( - DiscordVoiceWebSocket.MLS_KEY_PACKAGE, + DiscordVoiceWebSocket.MLS_COMMIT_WELCOME, result.commit + result.welcome if result.welcome else result.commit, ) _log.debug('MLS proposals processed')