Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b26d09cf authored by Yuyang Huang's avatar Yuyang Huang Committed by Gerrit Code Review
Browse files

Merge "Fix ASHA isValidDevice check"

parents b981b939 c60d80a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -908,7 +908,7 @@ public final class BluetoothHearingAid implements BluetoothProfile {
        }
        final IBluetoothHearingAid service = getService();
        AdvertisementServiceData result = null;
        if (service == null || !isEnabled() || isValidDevice(device)) {
        if (service == null || !isEnabled() || !isValidDevice(device)) {
            Log.w(TAG, "Proxy not attached to service");
            if (DBG) {
                log(Log.getStackTraceString(new Throwable()));