mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-06-05 21:49:48 +02:00
Pebble: fix long standing bug in uuid encoding for ACK messages (did not seem to do any harm)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user