fix: TTS reads output in auto mode (don't skip when listening)
Deploy Dashboard / deploy (push) Successful in 1m0s

This commit is contained in:
Gan, Jimmy
2026-02-26 16:12:36 +08:00
parent cf8a5a65b2
commit f218d8df55
+1 -1
View File
@@ -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);
}