From 00b58288cf0aceb48825c64bc838fb45ec4f4c2f Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 28 Aug 2025 14:42:51 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(frontend)=20fix=20LiveKit=20mic=20?= =?UTF-8?q?indicator=20for=20admin-muted=20participants?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct microphone muted indicator logic that only showed muted state when participants explicitly muted themselves, missing cases where admins prevented microphone publishing. Now properly displays muted indicator for both self-muted and admin-restricted microphone states, providing accurate visual feedback for all muting scenarios. --- .../src/features/rooms/livekit/components/MutedMicIndicator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/features/rooms/livekit/components/MutedMicIndicator.tsx b/src/frontend/src/features/rooms/livekit/components/MutedMicIndicator.tsx index 338b263e..fe6cca22 100644 --- a/src/frontend/src/features/rooms/livekit/components/MutedMicIndicator.tsx +++ b/src/frontend/src/features/rooms/livekit/components/MutedMicIndicator.tsx @@ -14,7 +14,7 @@ export const MutedMicIndicator = ({ source: Source.Microphone, }) - if (!isMuted) { + if (!isMuted && participant.isMicrophoneEnabled) { return null }