From 88710688f89f270a37bb0c7b4123658f7dab9f7d Mon Sep 17 00:00:00 2001 From: Timo K Date: Thu, 3 Jul 2025 16:20:20 +0200 Subject: [PATCH] more comment Signed-off-by: Timo K --- src/room/MuteStates.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/room/MuteStates.ts b/src/room/MuteStates.ts index cad08a8a..3a38fe9c 100644 --- a/src/room/MuteStates.ts +++ b/src/room/MuteStates.ts @@ -90,6 +90,7 @@ export function useMuteStates(isJoined: boolean): MuteStates { useEffect(() => { // If audio is enabled, we need to request the device names again, // because iOS will not be able to switch to the correct device after un-muting. + // This is one of the main changes that makes iOS work bluetooth audio devices. if (audio.enabled) { devices.requestDeviceNames(); }