mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[GH-ISSUE #22745] issue: Uncaught TypeError: can't access property "setId", _() is null when clicking "Read Aloud" in Search Chats preview
#58473
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 @silentoplayz on GitHub (Mar 17, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/22745
Check Existing Issues
Installation Method
Git Clone
Open WebUI Version
v0.8.10
Ollama Version (if applicable)
v0.18.0
Operating System
Ubuntu 24.04.4 LTS
Browser (if applicable)
Mozilla Firefox Snap for Ubuntu v148.0.2 (64-bit) / Google Chrome v146.0.7680.80 (Official Build) (64-bit)
Confirmation
README.md.Expected Behavior
Clicking the "Read Aloud" button on a message within the "Search Chats" modal (chat preview) should successfully play the TTS audio without throwing an error, regardless of whether the button was previously clicked within the actual chat interface.
Actual Behavior
Clicking the "Read Aloud" button in the chat preview (from the "Search Chats" modal) throws a TypeError (
can't access property "setId", _() is null) in the browser console, and the TTS audio fails to play. This appears to occur only if the "Read Aloud" button hasn't already been clicked from directly within the chat itself first.Steps to Reproduce
v0.8.10version on Ubuntu 24.04.4 LTS using Firefox v148.0.2.Searchbutton in the chats sidebar.Read Aloudbutton beneath it.Read Aloudbutton hasn't been clicked directly within that chat prior to attempting it from the preview.Logs & Screenshots
Browser Console:
Additional Information
src/lib/components/chat/Messages/ResponseMessage.svelte. The stack trace indicates aTypeError: can't access property "setId", _() is nullwhen the speak button is pressed, suggesting that the store or worker responsible for audio might not be fully initialized or bound correctly when accessed solely through the preview modal.@tjbck commented on GitHub (Mar 21, 2026):
Addressed in dev.
@Classic298 commented on GitHub (Mar 22, 2026):
d8fa0f426a@silentoplayz commented on GitHub (Mar 23, 2026):
This makes the
Read Aloudbutton in the chat preview modal not visible, right?