Match manufacturer string with what we get from BLE device info

master
Andreas Shimokawa 2016-09-19 15:00:24 +02:00
parent 8ba7bc7353
commit b2669d6fd7
1 changed files with 1 additions and 4 deletions

View File

@ -15,9 +15,6 @@ import nodomain.freeyourgadget.gadgetbridge.model.ActivitySample;
import nodomain.freeyourgadget.gadgetbridge.model.DeviceType; import nodomain.freeyourgadget.gadgetbridge.model.DeviceType;
public class VibratissimoCoordinator extends AbstractDeviceCoordinator { public class VibratissimoCoordinator extends AbstractDeviceCoordinator {
public VibratissimoCoordinator() {
}
@Override @Override
public boolean supports(GBDeviceCandidate candidate) { public boolean supports(GBDeviceCandidate candidate) {
String name = candidate.getDevice().getName(); String name = candidate.getDevice().getName();
@ -76,6 +73,6 @@ public class VibratissimoCoordinator extends AbstractDeviceCoordinator {
@Override @Override
public String getManufacturer() { public String getManufacturer() {
return "Armor Gummiwaren GmbH"; return "Amor AG";
} }
} }