1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-24 19:06:53 +01:00

Fix for send message from debug screen

This commit is contained in:
ivanovlev 2017-01-14 23:01:44 +03:00
parent c873312831
commit b9249065eb

View File

@ -785,7 +785,12 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
//replace unsupported symbols to english analog
private String transliterate(String txt){
if (txt == null || txt.isEmpty()) {
return txt;
}
StringBuilder message = new StringBuilder();
char[] chars = txt.toCharArray();
for (char c : chars)