1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-04 09:17:29 +01:00

Mi1: Attempt to recognize Mi1 model with hwVersion = 8

Closes #364
This commit is contained in:
cpfeiffer 2017-03-20 23:25:42 +01:00
parent 14552a1a80
commit da9742fd67

View File

@ -117,7 +117,7 @@ public class DeviceInfo extends AbstractInfo {
}
public boolean isMili1() {
return hwVersion == 2;
return hwVersion == 2 || (feature == 0 && appearance == 0 && hwVersion == 8 && fw2Version == -1);
}
public boolean isMili1A() {