You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
6b1f43d: Fix onAudioAlignment callback never firing on the WebRTC transport. The WebRTCConnectionDataReceived handler dropped the entire type: "audio" JSON message because audio bytes flow over LiveKit audio tracks, but the same message carries the alignment metadata (chars + char_start_times_ms + char_durations_ms) — which got dropped along with it. Now audio messages are routed through handleMessage so VoiceConversation.handleAudio can surface alignment, then return before the audio_base_64 playback path (LiveKit still handles playback via the audio track).