mirror of
https://github.com/open-webui/open-webui.git
synced 2026-01-03 23:25:21 +00:00
fix: tts read aloud
Change: const content = removeAllDetails(content); to const content = removeAllDetails(message.content); Error: Uncaught (in promise) ReferenceError: can't access lexical declaration 'z' before initialization. ResponseMessage.svelte:215:42
This commit is contained in:
parent
a2afd6f645
commit
4995bfe571
1 changed files with 1 additions and 1 deletions
|
|
@ -212,7 +212,7 @@
|
|||
|
||||
speaking = true;
|
||||
|
||||
const content = removeAllDetails(content);
|
||||
const content = removeAllDetails(message.content);
|
||||
|
||||
if ($config.audio.tts.engine === '') {
|
||||
let voices = [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue