From c500b233724342ce0f0cac27eed2b677405bce73 Mon Sep 17 00:00:00 2001 From: dwrz Date: Tue, 30 Jun 2026 10:07:34 +0000 Subject: [PATCH] Fix TTS play during recording / transcription --- internal/service/static/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/service/static/main.js b/internal/service/static/main.js index da4ae13..3acb223 100644 --- a/internal/service/static/main.js +++ b/internal/service/static/main.js @@ -1241,6 +1241,7 @@ class Odidere { */ #enqueueTTS(text, voice, messageId) { if (!text || !this.ttsURL) return; + if (this.isRecording || this.isTranscribing) return; this.playQueue.push({ text, voice, messageId }); if (!this.isPlaying) { this.#processQueue();