mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-27 20:36:51 +01:00
DBHelper: no not update device attributes in db if we call getDevice() on a disconnected device
Fixes NPE
This commit is contained in:
parent
16af0724dd
commit
67f035accf
@ -384,7 +384,9 @@ public class DBHelper {
|
||||
} else {
|
||||
ensureDeviceUpToDate(device, gbDevice, session);
|
||||
}
|
||||
ensureDeviceAttributes(device, gbDevice, session);
|
||||
if (gbDevice.isInitialized()) {
|
||||
ensureDeviceAttributes(device, gbDevice, session);
|
||||
}
|
||||
|
||||
return device;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user