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

Commit 6877bdeb authored by Yuyang Huang's avatar Yuyang Huang
Browse files

minor fix for comparison

Bug: 331775328
Change-Id: I837488eb9e0221c4e2c7ff521637912dde31d9dc
Test: atest LeAudioServiceTest
Flag: EXEMPT, small fix
parent 2ad1194e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1847,7 +1847,7 @@ public class LeAudioService extends ProfileService {
                        + (", mActiveAudioInDevice: " + mActiveAudioInDevice)
                        + (", mActiveAudioOutDevice: " + mActiveAudioOutDevice));

        if (device != mExposedActiveDevice) {
        if (!device.equals(mExposedActiveDevice)) {
            return;
        }