We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
showDisconnected == false
1 parent 4f807f2 commit ae26692Copy full SHA for ae26692
src/detection/bluetooth/bluetooth_apple.m
@@ -18,6 +18,9 @@ @interface IOBluetoothDevice()
18
19
for(IOBluetoothDevice* ioDevice in ioDevices)
20
{
21
+ if (!options->showDisconnected && !ioDevice.isConnected)
22
+ continue;
23
+
24
FFBluetoothResult* device = ffListAdd(devices);
25
ffStrbufInitS(&device->name, ioDevice.name.UTF8String);
26
ffStrbufInitS(&device->address, ioDevice.addressString.UTF8String);
0 commit comments