Pebble: fix long standing bug in uuid encoding for ACK messages (did not seem to do any harm)
This commit is contained in:
parent
50cb3c9db3
commit
0218cee0e1
|
@ -1706,7 +1706,7 @@ public class PebbleProtocol extends GBDeviceProtocol {
|
|||
buf.put(APPLICATIONMESSAGE_ACK);
|
||||
buf.put(id);
|
||||
buf.putLong(uuid.getMostSignificantBits());
|
||||
buf.putLong(uuid.getMostSignificantBits());
|
||||
buf.putLong(uuid.getLeastSignificantBits());
|
||||
|
||||
return buf.array();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue