mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Amazfit GTS2 mini: Fix device name as stated in #2152
This commit is contained in:
+1
-1
@@ -44,7 +44,7 @@ public class AmazfitGTS2MiniCoordinator extends AmazfitGTS2Coordinator {
|
||||
try {
|
||||
BluetoothDevice device = candidate.getDevice();
|
||||
String name = device.getName();
|
||||
if (name != null && name.equalsIgnoreCase("Amazfit GTS 2 Mini")) {
|
||||
if (name != null && name.equalsIgnoreCase("Amazfit GTS2 mini")) {
|
||||
return DeviceType.AMAZFITGTS2_MINI;
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
|
||||
Reference in New Issue
Block a user