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

Commit 91c8a6ed authored by Jack He's avatar Jack He Committed by android-build-merger
Browse files

Merge "Bluetooth: Fix boolean logic in quiet mode enable" am: 1801711c

am: b9d49781

Change-Id: I8173afb73788a3de9ce7b1af07e653f9b76fbefa
parents 2f4f1d42 b9d49781
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1628,7 +1628,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {

                        //Do enable request
                        try {
                            if (mQuietEnable) {
                            if (!mQuietEnable) {
                                if (!mBluetooth.enable()) {
                                    Slog.e(TAG, "IBluetooth.enable() returned false");
                                }