fix basal rendering

This commit is contained in:
Milos Kozak 2019-05-12 10:52:25 +02:00
parent 197f3bb691
commit 4fda6c4c4f

View file

@ -391,6 +391,7 @@ public class IobCobCalculatorPlugin extends PluginBase {
}
public BasalData getBasalData(Profile profile, long time) {
synchronized (dataLock) {
long now = System.currentTimeMillis();
time = roundUpTime(time);
BasalData retval = basalDataTable.get(time);
@ -414,6 +415,7 @@ public class IobCobCalculatorPlugin extends PluginBase {
}
return retval;
}
}
@Nullable
public AutosensData getAutosensData(long time) {