mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-28 12:56:49 +01:00
Pebble: fix decoding of byte and short appmessage data (when a native handler is present)
This commit is contained in:
parent
f25605f5a1
commit
507e58922f
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user