DanaR: Fix NPE

This commit is contained in:
Milos Kozak 2022-03-30 10:01:28 +02:00
parent 75cb6d466c
commit c383f471a7

View file

@ -196,6 +196,7 @@ public abstract class AbstractDanaRExecutionService extends DaggerService {
if (bluetoothAdapter != null) {
Set<BluetoothDevice> bondedDevices = bluetoothAdapter.getBondedDevices();
if (bondedDevices != null)
for (BluetoothDevice device : bondedDevices) {
if (mDevName.equals(device.getName())) {
mBTDevice = device;