fix: TTS reads output in auto mode (don't skip when listening)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user