diff --git a/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothCommunication.java b/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothCommunication.java index cd8f6887..846756e9 100644 --- a/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothCommunication.java +++ b/android_app/app/src/main/java/com/health/openscale/core/bluetooth/BluetoothCommunication.java @@ -380,7 +380,7 @@ public abstract class BluetoothCommunication { if (device.getName().toLowerCase().equals(btDeviceName.toLowerCase())) { Log.d("BluetoothCommunication", btDeviceName + " found trying to connect..."); - bluetoothGatt = device.connectGatt(context, true, gattCallback); + bluetoothGatt = device.connectGatt(context, false, gattCallback); } } }