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

Commit b9d49781 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

Change-Id: I58d0f361db35998b30c70cfd380e35b63e543524
parents 1a8fb13d 1801711c
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");
                                }