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

Commit 78b65a4b authored by Sal Savage's avatar Sal Savage Committed by Gerrit Code Review
Browse files

Merge "Update LE Audio profile enable property names to be in line with spec"

parents 3e9ee649 4671e444
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ public class LeAudioService extends ProfileService {
    }

    public static boolean isEnabled() {
        return BluetoothProperties.isProfileBapUnicastServerEnabled().orElse(false);
        return BluetoothProperties.isProfileBapUnicastClientEnabled().orElse(false);
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ public class TbsService extends ProfileService {
    private final TbsGeneric mTbsGeneric = new TbsGeneric();

    public static boolean isEnabled() {
        return BluetoothProperties.isProfileTbsServerEnabled().orElse(false);
        return BluetoothProperties.isProfileCcpServerEnabled().orElse(false);
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@ public class VolumeControlService extends ProfileService {
    private final ServiceFactory mFactory = new ServiceFactory();

    public static boolean isEnabled() {
        return BluetoothProperties.isProfileVcServerEnabled().orElse(false);
        return BluetoothProperties.isProfileVcpControllerEnabled().orElse(false);
    }

    @Override