fix NPE in profile

This commit is contained in:
Milos Kozak 2018-02-11 14:40:07 +01:00
parent 23396ed80b
commit e4891683b5

View file

@ -413,6 +413,8 @@ public class Profile {
}
public String getBasalList() {
if (basal_v == null)
basal_v = convertToSparseArray(basal);
return getValuesList(basal_v, null, new DecimalFormat("0.00"), "U");
}