1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-10-16 10:30:59 +02:00

Attempt to re-enable automatic reconnect (autosensing) #249

(now that initializing device works again)
This commit is contained in:
cpfeiffer 2016-04-03 23:32:15 +02:00
parent 59c3970008
commit 3e3cf462a6

View File

@ -158,7 +158,7 @@ public final class BtLEQueue {
mBluetoothAdapter.cancelDiscovery();
BluetoothDevice remoteDevice = mBluetoothAdapter.getRemoteDevice(mGbDevice.getAddress());
synchronized (mGattMonitor) {
mBluetoothGatt = remoteDevice.connectGatt(mContext, false, internalGattCallback);
mBluetoothGatt = remoteDevice.connectGatt(mContext, true, internalGattCallback);
// result = mBluetoothGatt.connect();
}
boolean result = mBluetoothGatt != null;