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

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

Enable Bluetooth by default am: a6088d9e

am: 4c18d82084

Change-Id: I9f8e70c2bebd61b16f4d751f8dab5240fda9933b
parents dc80b94c a6088d9e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -293,7 +293,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;
    }

    /**
@@ -301,7 +301,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;
    }

    /**