From 35434817b3541fd59cfc311e785963009b75133c Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 3 May 2026 19:57:00 +0200 Subject: [PATCH] CMF Buds: Relax name check for Buds 2 Plus After using Google Fast Pair the buds will have their bluetooth name suffixed with some identification text, thus the exact match won't work anymore and they get detected as generic headphones instead. --- .../gadgetbridge/devices/nothing/CmfBuds2PlusCoordinator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/devices/nothing/CmfBuds2PlusCoordinator.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/devices/nothing/CmfBuds2PlusCoordinator.java index 0c020c89bb..a714912fc5 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/devices/nothing/CmfBuds2PlusCoordinator.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/devices/nothing/CmfBuds2PlusCoordinator.java @@ -23,7 +23,7 @@ import nodomain.freeyourgadget.gadgetbridge.R; public class CmfBuds2PlusCoordinator extends AbstractEarCoordinator { @Override protected Pattern getSupportedDeviceName() { - return Pattern.compile("^CMF Buds 2 Plus$"); + return Pattern.compile("^CMF Buds 2 Plus.*$"); } @Override