mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-07 03:18:23 -05:00
[GH-ISSUE #20988] issue: Android (Chromium browsers): Voice Call mode consistently freezes after ~8–9 turns (TTS request returns 200, UI stuck). Firefox/Safari OK #34881
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Jordive992 on GitHub (Jan 28, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/20988
Check Existing Issues
Installation Method
Pip Install
Open WebUI Version
0.7.2
Ollama Version (if applicable)
No response
Operating System
Windows 11
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
When using Voice Call mode in OpenWebUI on Android browsers, the voice conversation should remain stable across many turns. Each turn should:
capture microphone input,
transcribe and send the message,
generate the assistant response,
synthesize and play the TTS audio,
then reliably return to the listening state for the next turn, without freezing or requiring a page reload, regardless of the number of turns.
Actual Behavior
On Android Chromium-based browsers (Chrome, Edge, Opera, Samsung Internet), Voice Call mode consistently breaks after ~8–9 turns (even with short messages and even without Bluetooth/headphones). At the failure point:
the user’s speech is transcribed and appears in the chat,
the assistant response text is generated and visible,
the server logs show the TTS endpoint returning HTTP 200, but the Call UI stays stuck in the “thinking/…” state, does not play the response audio, and stops listening for further input. The only workaround is refreshing/reloading the page, after which it works again until freezing around turn ~8–9.
Steps to Reproduce
On an Android phone, open OpenWebUI in a Chromium-based browser (Chrome / Edge / Opera / Samsung Internet).
Open any chat (new or existing).
Enable Voice Call mode (hands-free “Call” mode) and grant microphone permission.
Perform several short voice turns:
speak a short sentence,
wait for transcription,
wait for the assistant response to appear,
wait for TTS playback,
repeat.
After approximately 8–9 turns, the issue occurs:
the speech is transcribed and shown as a user message,
the assistant response text is generated and visible,
but the call UI remains stuck in the “thinking/…” state, no TTS audio plays, and it stops listening.
Refresh/reload the page to recover; repeat steps 3–5 and the freeze happens again around turn 8–9.
Notes:
Reproduces even without Bluetooth/headphones (using phone mic/speaker).
Does not reproduce on Firefox (Android) (tested 25 turns).
Does not reproduce on Safari (iPhone) (tested 12+ turns) or on desktop browsers (tested 20+ turns).
Logs & Screenshots
t at the moment the call UI freezes on Android Chromium browsers, the backend still completes the request successfully:
POST /api/chat/completedreturns 200POST /api/v1/audio/speechreturns 200 (TTS request succeeds)However, on the client the call overlay remains stuck in “thinking/…”, no audio is played, and it stops listening until the page is refreshed.
Additional Information
No response