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

Commit b4342924 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: 1801711c53

Change-Id: I58d0f361db35998b30c70cfd380e35b63e543524
parents 115bf4df 6fa8f5a5
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");
                                }