Avoid KIA Sportage appearing in the list of devices

This commit is contained in:
Stan Gomin
2018-12-23 12:57:34 +01:00
committed by Carsten Pfeiffer
parent c845e16cfa
commit efd7195725
@@ -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;
}