Forgotten prediction lines

This commit is contained in:
Philoul 2020-06-25 21:33:45 +02:00
parent 2606e51eb1
commit d28770ac08

View file

@ -541,7 +541,7 @@ public class WatchUpdaterService extends WearableListenerService implements Goog
final String units = profileFunction.getUnits();
for (BgReading bg : predArray) {
if (bg.value < 40) continue;
predictions.add(predictionMap(bg.date, bg.valueToUnits(units), bg.getPredectionColor()));
predictions.add(predictionMap(bg.date, bg.value, bg.getPredectionColor()));
}
}
}