From 11806ea614a6a507ef9bf04f73eb17cb204c8030 Mon Sep 17 00:00:00 2001 From: balex Date: Mon, 9 Mar 2026 14:35:01 +0100 Subject: [PATCH] fix bug --- src/public/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/js/app.js b/src/public/js/app.js index 33d545c..ea6c3a7 100644 --- a/src/public/js/app.js +++ b/src/public/js/app.js @@ -146,7 +146,7 @@ function createRecognition() { if (!SpeechRecognition) return null; const r = new SpeechRecognition(); r.lang = 'de-DE'; - r.continuous = false; // false is more reliable on Android + r.continuous = true; r.interimResults = true; r.maxAlternatives = 1;