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

Commit 1801711c authored by Jack He's avatar Jack He Committed by Gerrit Code Review
Browse files

Merge "Bluetooth: Fix boolean logic in quiet mode enable"

parents e7120f50 a6e031c9
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");
                                }