Replace mobile TTS placeholder text

Closes #2631
This commit is contained in:
Cohee 2024-08-09 10:17:06 +03:00
parent e17f0b368d
commit 6683ae810f
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ class SystemTtsProvider {
if (hasEnabledVoice) {
return;
}
const utterance = new SpeechSynthesisUtterance('hi');
const utterance = new SpeechSynthesisUtterance(' . ');
utterance.volume = 0;
speechSynthesis.speak(utterance);
hasEnabledVoice = true;