Skip to content

Commit

Permalink
Merge pull request #683 from MojioMS/master
Browse files Browse the repository at this point in the history
Update BluetoothLePlugin.java
  • Loading branch information
randdusing authored Apr 7, 2021
2 parents d08b185 + b9fa60d commit c212e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/BluetoothLePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ private void retrieveConnectedAction(JSONArray args, CallbackContext callbackCon

Set<BluetoothDevice> devices = bluetoothAdapter.getBondedDevices();
for (BluetoothDevice device : devices) {
if (device.getType() != BluetoothDevice.DEVICE_TYPE_LE) {
if (device.getType() != BluetoothDevice.DEVICE_TYPE_LE && device.getType() != BluetoothDevice.DEVICE_TYPE_DUAL) {
continue;
}

Expand Down

0 comments on commit c212e69

Please sign in to comment.