1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-20 20:10:15 +02:00

Xiaomi: Handle chunked nack

This commit is contained in:
José Rebelo 2023-10-17 13:24:01 +01:00
parent a19318c5bd
commit f3d6be2f96

View File

@ -194,6 +194,12 @@ public class XiaomiCharacteristic {
builder.queue(mSupport.getQueue());
return;
case 2:
LOG.warn("Got chunked nack");
currentSending = null;
sendingChunked = false;
sendNext();
return;
}
LOG.warn("Unknown chunked ack subtype {}", subtype);