From ee6c4041226867045b6e0a3f7ad7c741d01908ef Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Thu, 26 Feb 2026 16:12:36 +0800 Subject: [PATCH] fix: TTS reads output in auto mode (don't skip when listening) --- dashboard/frontend/src/lib/voice.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/frontend/src/lib/voice.js b/dashboard/frontend/src/lib/voice.js index 3273681..6ba3836 100644 --- a/dashboard/frontend/src/lib/voice.js +++ b/dashboard/frontend/src/lib/voice.js @@ -168,7 +168,7 @@ export class VoiceSession { // --- TTS --- _onOutput() { - if (!this.ttsEnabled || this.listening) return; + if (!this.ttsEnabled || this.transcript) return; clearTimeout(this._debounce); this._debounce = setTimeout(() => this._readBuffer(), 2000); }