fix Livekit Audio

This commit is contained in:
PxlLoewe
2025-07-18 18:21:39 -07:00
parent adc11ec647
commit 41a3086d82
2 changed files with 24 additions and 14 deletions

View File

@@ -184,7 +184,9 @@ export const useAudioStore = create<TalkState>((set, get) => ({
name: "radio-audio",
source: Track.Source.Microphone,
});
await publishedTrack.mute();
setTimeout(() => {
publishedTrack.mute();
}, 400);
set({ localRadioTrack: publishedTrack });
set({ state: "connected", room, message: null });