mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Avoid KIA Sportage appearing in the list of devices
This commit is contained in:
committed by
Carsten Pfeiffer
parent
c845e16cfa
commit
efd7195725
+1
-1
@@ -35,7 +35,7 @@ public class MakibesF68Coordinator extends HPlusCoordinator {
|
||||
@Override
|
||||
public DeviceType getSupportedType(GBDeviceCandidate candidate) {
|
||||
String name = candidate.getDevice().getName();
|
||||
if(name != null && name.startsWith("SPORT")){
|
||||
if(name != null && name.startsWith("SPORT") && !name.startsWith("SPORTAGE")){
|
||||
return DeviceType.MAKIBESF68;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user