1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-22 14:52:25 +02:00

Pebble: convert Boolean to String for app configuration

This commit is contained in:
Andreas Shimokawa 2016-03-03 16:02:30 +01:00
parent bd7b34985b
commit 1e44bb03fb

View File

@ -110,7 +110,11 @@ public class ExternalPebbleJSActivity extends Activity {
cur_key = key.next();
int pebbleAppIndex = knownKeys.optInt(cur_key);
if (pebbleAppIndex != 0) {
out.put(String.valueOf(pebbleAppIndex), in.get(cur_key));
Object obj = in.get(cur_key);
if (obj instanceof Boolean) {
obj = ((Boolean) obj) ? "true" : "false";
}
out.put(String.valueOf(pebbleAppIndex), obj);
} else {
GB.toast("Discarded key " + cur_key + ", not found in the local configuration.", Toast.LENGTH_SHORT, GB.WARN);
}