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

Commit 392a9a2d 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

am: 91c8a6ed

Change-Id: I7a584f49369f929de68cd1b1aa25042f000f1522
parents 18e7211a 91c8a6ed
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");
                                }