fix character issue
This commit is contained in:
parent
50b125541e
commit
c6c971a4eb
1 changed files with 1 additions and 1 deletions
|
@ -428,7 +428,7 @@ public class VoiceRouter {
|
|||
if(res != null) {
|
||||
res = res.replace('-', ' ');
|
||||
res = res.replace(':', ' ');
|
||||
res = res.replace('ß', 'ss'); // this should help non-German tts voices to pronounce German "Straße" (=street)
|
||||
res = res.replace('ß', 'ss'); // this should help non-German tts voices to pronounce German "Straße" (=street)
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue