DanaR: Fix NPE
This commit is contained in:
parent
75cb6d466c
commit
c383f471a7
1 changed files with 11 additions and 10 deletions
|
@ -196,6 +196,7 @@ public abstract class AbstractDanaRExecutionService extends DaggerService {
|
||||||
if (bluetoothAdapter != null) {
|
if (bluetoothAdapter != null) {
|
||||||
Set<BluetoothDevice> bondedDevices = bluetoothAdapter.getBondedDevices();
|
Set<BluetoothDevice> bondedDevices = bluetoothAdapter.getBondedDevices();
|
||||||
|
|
||||||
|
if (bondedDevices != null)
|
||||||
for (BluetoothDevice device : bondedDevices) {
|
for (BluetoothDevice device : bondedDevices) {
|
||||||
if (mDevName.equals(device.getName())) {
|
if (mDevName.equals(device.getName())) {
|
||||||
mBTDevice = device;
|
mBTDevice = device;
|
||||||
|
|
Loading…
Reference in a new issue