1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-10-02 19:27:08 +02:00

Revert "Add Support for Bip U series China Variant"

This reverts commit 8e66ed4283.
This commit is contained in:
Andreas Shimokawa 2022-01-18 20:02:28 +01:00
parent d0f80eb5b4
commit 3b25f57986
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ public class AmazfitBipUCoordinator extends HuamiCoordinator {
try {
BluetoothDevice device = candidate.getDevice();
String name = device.getName();
if (name != null && (name.equalsIgnoreCase("Amazfit Bip U")||name.equalsIgnoreCase("Amazfit Pop"))) {
if (name != null && (name.equalsIgnoreCase("Amazfit Bip U"))) {
return DeviceType.AMAZFITBIPU;
}
} catch (Exception ex) {

View File

@ -48,7 +48,7 @@ public class AmazfitBipUProCoordinator extends HuamiCoordinator {
try {
BluetoothDevice device = candidate.getDevice();
String name = device.getName();
if (name != null && (name.equalsIgnoreCase("Amazfit Bip U Pro")||name.equalsIgnoreCase("Amazfit Pop Pro"))) {
if (name != null && (name.equalsIgnoreCase("Amazfit Bip U Pro"))) {
return DeviceType.AMAZFITBIPUPRO;
}
} catch (Exception ex) {