Skip to content

Commit c212e69

Browse files
authored
Merge pull request #683 from MojioMS/master
Update BluetoothLePlugin.java
2 parents d08b185 + b9fa60d commit c212e69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/android/BluetoothLePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ private void retrieveConnectedAction(JSONArray args, CallbackContext callbackCon
12391239

12401240
Set<BluetoothDevice> devices = bluetoothAdapter.getBondedDevices();
12411241
for (BluetoothDevice device : devices) {
1242-
if (device.getType() != BluetoothDevice.DEVICE_TYPE_LE) {
1242+
if (device.getType() != BluetoothDevice.DEVICE_TYPE_LE && device.getType() != BluetoothDevice.DEVICE_TYPE_DUAL) {
12431243
continue;
12441244
}
12451245

0 commit comments

Comments
 (0)