Replace non utf character
This commit is contained in:
parent
3b363b6b5e
commit
19348411a1
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ public class VoiceRouter {
|
||||||
if(pn != null) {
|
if(pn != null) {
|
||||||
pn = pn.replace('-', ' ');
|
pn = pn.replace('-', ' ');
|
||||||
pn = pn.replace(':', ' ');
|
pn = pn.replace(':', ' ');
|
||||||
pn = pn.replace("\u00df", "ss"); // helps non-German tts voices to pronounce German Straße (=street)
|
pn = pn.replace("\u00df", "ss"); // helps non-German tts voices to pronounce German Strasse (=street)
|
||||||
}
|
}
|
||||||
return pn;
|
return pn;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue