mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-25 19:36:50 +01:00
Based on Play Store crash reports and stack traces, add a null check to try and avoid crashes
This commit is contained in:
parent
82778c46a5
commit
788cb15500
@ -82,6 +82,7 @@ public class DeviceManager {
|
||||
case BLUETOOTH_DEVICE_ACTION_ALIAS_CHANGED:
|
||||
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
|
||||
String newName = intent.getStringExtra(BluetoothDevice.EXTRA_NAME);
|
||||
if (device!=null)
|
||||
updateDeviceName(device, newName);
|
||||
break;
|
||||
case GBDevice.ACTION_DEVICE_CHANGED:
|
||||
|
Loading…
Reference in New Issue
Block a user