Pebble: fix long standing bug in uuid encoding for ACK messages (did not seem to do any harm)

here
Andreas Shimokawa 2017-01-11 23:42:40 +01:00
parent 50cb3c9db3
commit 0218cee0e1
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}