mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
FitPro: add LH716 to list of supported names, fix #2418
This commit is contained in:
+4
-3
@@ -60,9 +60,10 @@ public class FitProDeviceCoordinator extends AbstractDeviceCoordinator {
|
||||
BluetoothDevice device = candidate.getDevice();
|
||||
String name = device.getName();
|
||||
|
||||
if (name != null &&
|
||||
(name.equals("M6") ||
|
||||
name.equals("M4"))
|
||||
if (name != null && (
|
||||
name.equals("M6") ||
|
||||
name.equals("M4") ||
|
||||
name.equals("LH716"))
|
||||
) {
|
||||
return DeviceType.FITPRO;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user