mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-29 05:16:51 +01:00
Attempt to fix reconnection problems after being away from the Mi Band
*untested*
This commit is contained in:
parent
c407ed1a76
commit
bdc9e70e6e
@ -147,13 +147,11 @@ public final class BtLEQueue {
|
||||
}
|
||||
LOG.info("Attempting to connect to " + mGbDevice.getName());
|
||||
BluetoothDevice remoteDevice = mBluetoothAdapter.getRemoteDevice(mGbDevice.getAddress());
|
||||
boolean result = false;
|
||||
synchronized (mGattMonitor) {
|
||||
mBluetoothGatt = remoteDevice.connectGatt(mContext, false, internalGattCallback);
|
||||
result = mBluetoothGatt.connect();
|
||||
mBluetoothGatt = remoteDevice.connectGatt(mContext, true, internalGattCallback);
|
||||
}
|
||||
setDeviceConnectionState(result ? State.CONNECTING : State.NOT_CONNECTED);
|
||||
return result;
|
||||
setDeviceConnectionState(State.CONNECTING);
|
||||
return true;
|
||||
}
|
||||
|
||||
private void setDeviceConnectionState(State newState) {
|
||||
|
Loading…
Reference in New Issue
Block a user