diff --git a/public_html/assets/js/jarvis-app.js b/public_html/assets/js/jarvis-app.js index 4ba8c31..97d347a 100644 --- a/public_html/assets/js/jarvis-app.js +++ b/public_html/assets/js/jarvis-app.js @@ -161,7 +161,7 @@ function showApp(name, greeting, silent = false) { } }, 30000); setInterval(() => { - if (voiceMode && !document.body.classList.contains(kiosk-mode) && voiceLastCmd > 0 && Date.now() - voiceLastCmd > VOICE_SLEEP_MS) { + if (voiceMode && !document.body.classList.contains("kiosk-mode") && voiceLastCmd > 0 && Date.now() - voiceLastCmd > VOICE_SLEEP_MS) { exitVoiceMode(); } }, 60000); diff --git a/public_html/index.html b/public_html/index.html index ce6397c..6b71717 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -6,7 +6,7 @@