1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-04 03:52:02 +02:00

Garmin Epix Pro: Fix typo in device name

This commit is contained in:
José Rebelo 2024-06-02 21:00:25 +01:00
parent ad90f21b19
commit 09bcb782da

View File

@ -8,7 +8,7 @@ import nodomain.freeyourgadget.gadgetbridge.devices.garmin.GarminCoordinator;
public class GarminEpixProCoordinator extends GarminCoordinator {
@Override
protected Pattern getSupportedDeviceName() {
return Pattern.compile("^EPIX PRO - (\\d+) mm$");
return Pattern.compile("^EPIX PRO - \\d+mm$");
}
@Override