1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-12-25 01:55:50 +01:00

fix device name regex

This commit is contained in:
enoint 2024-06-16 11:32:31 +02:00 committed by José Rebelo
parent 2ec568bec7
commit c847079cd2

View File

@ -40,7 +40,7 @@ public final class HamaFit6900DeviceCoordinator extends AbstractBLEDeviceCoordin
@Override
protected Pattern getSupportedDeviceName() {
return Pattern.compile("Fit6900");
return Pattern.compile("^Fit6900$");
}
@Override