mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-26 11:56:48 +01:00
show all eligeble devices in Widget Configuration Activity, fix #2170
This commit is contained in:
parent
61395b210c
commit
0fd2de2bd3
@ -119,12 +119,11 @@ public class WidgetConfigurationActivity extends Activity {
|
|||||||
Device dbDevice = DBHelper.findDevice(device, daoSession);
|
Device dbDevice = DBHelper.findDevice(device, daoSession);
|
||||||
int icon = device.isInitialized() ? device.getType().getIcon() : device.getType().getDisabledIcon();
|
int icon = device.isInitialized() ? device.getType().getIcon() : device.getType().getDisabledIcon();
|
||||||
if (dbDevice != null && coordinator != null
|
if (dbDevice != null && coordinator != null
|
||||||
&& coordinator.supportsActivityTracks()
|
&& (coordinator.supportsActivityDataFetching() || coordinator.supportsActivityTracking())
|
||||||
&& !newMap.containsKey(device.getAliasOrName())) {
|
&& !newMap.containsKey(device.getAliasOrName())) {
|
||||||
newMap.put(device.getAliasOrName(), new Pair(device.getAddress(), icon));
|
newMap.put(device.getAliasOrName(), new Pair(device.getAddress(), icon));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.error("Error getting list of all devices: " + e);
|
LOG.error("Error getting list of all devices: " + e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user