From 17e1a7ffb3aba3402c1bdf7c1cf903cd2012ae51 Mon Sep 17 00:00:00 2001 From: renatospirito17 Date: Fri, 24 Apr 2026 16:16:45 +0200 Subject: [PATCH] Fix: speech bar on user join. The speech volume bar now appears as soon as the user joins the room. This was done because when in the presence of more than one other user, it gets difficult to see who's talking. --- public/js/client.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/js/client.js b/public/js/client.js index b2fd46b3..c44df166 100644 --- a/public/js/client.js +++ b/public/js/client.js @@ -2577,6 +2577,9 @@ async function whoAreYouJoin() { if (isScreenStreaming && useVideo) { await changeLocalCamera(videoSelect.value); } + if (useAudio && localAudioMediaStream) { + getMicrophoneVolumeIndicator(localAudioMediaStream); + } } /**