1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2025-01-12 18:57:36 +01:00

Huawei: Enable slicing by default

This commit is contained in:
Martin.JM 2024-06-18 21:00:19 +02:00
parent c9326ca447
commit cd7c529d53
2 changed files with 2 additions and 1 deletions

View File

@ -243,7 +243,7 @@ public class HuaweiPacket {
// Encryption is enabled by default, packets which don't use it must disable it // Encryption is enabled by default, packets which don't use it must disable it
protected boolean isEncrypted = true; protected boolean isEncrypted = true;
protected boolean isSliced = false; protected boolean isSliced = true;
public HuaweiPacket(ParamsProvider paramsProvider) { public HuaweiPacket(ParamsProvider paramsProvider) {
this.paramsProvider = paramsProvider; this.paramsProvider = paramsProvider;

View File

@ -65,6 +65,7 @@ public class DeviceConfig {
} }
this.complete = true; this.complete = true;
this.isEncrypted = false; this.isEncrypted = false;
this.isSliced = false;
} }
} }