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

Commit a6088d9e authored by Andre Eisenbach's avatar Andre Eisenbach
Browse files

Enable Bluetooth by default

Bug: 29446913
Change-Id: I6d42810cb3f99617b886f6c643f8c66c42c1d017
parent 76cb9c2b
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;
    }

    /**