From cba6524d130c59d4ba333f1336a890e4941c6edc Mon Sep 17 00:00:00 2001
From: c vw <dl1ycf@darc.de>
Date: Fri, 28 May 2021 16:59:30 +0200
Subject: [PATCH] "Mute audio to radio" means the radio (only), not a local
 headphone

---
 receiver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/receiver.c b/receiver.c
index b4b6199..0ac4b10 100644
--- a/receiver.c
+++ b/receiver.c
@@ -1373,7 +1373,7 @@ static void process_rx_buffer(RECEIVER *rx) {
     }
 
     if(rx->local_audio) {
-      if((rx!=active_receiver && rx->mute_when_not_active) || rx->mute_radio) {
+      if((rx!=active_receiver && rx->mute_when_not_active)) {
         left_sample=0.0;
         right_sample=0.0;
       } else {
-- 
2.45.2