1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-08 14:18:08 +02:00

Fix a crash (I have that with a device I am working on)

This commit is contained in:
Andreas Shimokawa 2023-10-08 21:27:19 +02:00
parent 77450efb99
commit dbb47351dd

View File

@ -162,7 +162,7 @@ public class GBDeviceCandidate implements Parcelable, Cloneable {
public boolean supportsService(UUID aService) {
ParcelUuid[] uuids = getServiceUuids();
if (uuids.length == 0) {
if (uuids == null || uuids.length == 0) {
LOG.warn("no cached services available for " + this);
return false;
}