From ffec5f4991f811d7f86f5e1f5622e21fb2b07951 Mon Sep 17 00:00:00 2001 From: Jan Mulder Date: Sun, 23 Dec 2018 15:35:21 +0100 Subject: Bluetooth: all states other than HostPoweredOff qualify as valid This is an attempt to fix issue #1896. While this seems a Qt issue in combination with very specific Android devices, this might be a fix. Do not check for a very specific state of the local BT controller, but just check if it is powered on. Signed-off-by: Jan Mulder --- core/btdiscovery.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index 207dfacf8..b9ef687ac 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -102,10 +102,11 @@ BTDiscovery::BTDiscovery(QObject*) : m_btValid(false), void BTDiscovery::BTDiscoveryReDiscover() { #if !defined(Q_OS_IOS) + qDebug() << "BTDiscoveryReDiscover: localBtDevice.isValid()" << localBtDevice.isValid(); if (localBtDevice.isValid() && - localBtDevice.hostMode() == QBluetoothLocalDevice::HostConnectable) { + localBtDevice.hostMode() != QBluetoothLocalDevice::HostPoweredOff) { btPairedDevices.clear(); - qDebug() << "localDevice " + localBtDevice.name() + " is valid, starting discovery"; + qDebug() << "BTDiscoveryReDiscover: localDevice " + localBtDevice.name() + " is powered on, starting discovery"; #else // for iOS we can't use the localBtDevice as iOS is BLE only // we need to find some other way to test if Bluetooth is enabled, though -- cgit v1.2.3-70-g09d2