From 2a30376e6dcc30e779b99892427722a29f24e3a3 Mon Sep 17 00:00:00 2001 From: Max Value Date: Thu, 15 Jan 2026 23:02:05 +0000 Subject: [PATCH] Fixed unmuted after joining call bug --- dialer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialer.py b/dialer.py index 6480250..edc14eb 100755 --- a/dialer.py +++ b/dialer.py @@ -280,7 +280,7 @@ async def confbridgejoin_callback(manager, message): send_emit({ "number": number, "status": "Connected", - "mute": message.Muted == "yes" + "mute": False }) -- 2.39.2