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

Commit a180f1b7 authored by Andre Eisenbach's avatar Andre Eisenbach Committed by android-build-merger
Browse files

Enable Bluetooth by default am: a6088d9e am: 4c18d82084

am: 4b24f79e

Change-Id: I4e9e10e4d4b29eb03140cc686b1acc3ecf5a0a7a
parents 82970e7d 4b24f79e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -302,7 +302,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
     */
    private final boolean isBluetoothPersistedStateOn() {
        return Settings.Global.getInt(mContentResolver,
                Settings.Global.BLUETOOTH_ON, 0) != BLUETOOTH_OFF;
                Settings.Global.BLUETOOTH_ON, BLUETOOTH_ON_BLUETOOTH) != BLUETOOTH_OFF;
    }

    /**
@@ -310,7 +310,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
     */
    private final boolean isBluetoothPersistedStateOnBluetooth() {
        return Settings.Global.getInt(mContentResolver,
                Settings.Global.BLUETOOTH_ON, 0) == BLUETOOTH_ON_BLUETOOTH;
                Settings.Global.BLUETOOTH_ON, BLUETOOTH_ON_BLUETOOTH) == BLUETOOTH_ON_BLUETOOTH;
    }

    /**