Pebble: fix decoding of byte and short appmessage data (when a native handler is present)

here
Andreas Shimokawa 2017-01-01 17:58:34 +01:00
parent f25605f5a1
commit 507e58922f
1 changed files with 7 additions and 1 deletions

View File

@ -1733,7 +1733,13 @@ public class PebbleProtocol extends GBDeviceProtocol {
switch (type) {
case TYPE_INT:
case TYPE_UINT:
dict.add(new Pair<Integer, Object>(key, buf.getInt()));
if (length == 1) {
dict.add(new Pair<Integer, Object>(key, buf.get()));
} else if (length == 2) {
dict.add(new Pair<Integer, Object>(key, buf.getShort()));
} else {
dict.add(new Pair<Integer, Object>(key, buf.getInt()));
}
break;
case TYPE_CSTRING:
case TYPE_BYTEARRAY: