fix null pointer exception in persistentnotification
This commit is contained in:
parent
7f123e4208
commit
3d3e849d8a
1 changed files with 8 additions and 8 deletions
|
@ -113,14 +113,14 @@ public class PersistentNotificationPlugin implements PluginBase{
|
||||||
|
|
||||||
if(profile != null && lastBG != null) {
|
if(profile != null && lastBG != null) {
|
||||||
line1 = lastBG.valueToUnitsToString(profile.getUnits());
|
line1 = lastBG.valueToUnitsToString(profile.getUnits());
|
||||||
}
|
if (glucoseStatus != null) {
|
||||||
if (glucoseStatus != null) {
|
line1 += " Δ" + deltastring(glucoseStatus.delta, glucoseStatus.delta * Constants.MGDL_TO_MMOLL, profile.getUnits())
|
||||||
line1 += " Δ" + deltastring(glucoseStatus.delta, glucoseStatus.delta * Constants.MGDL_TO_MMOLL, profile.getUnits())
|
+ " avgΔ" + deltastring(glucoseStatus.avgdelta, glucoseStatus.avgdelta * Constants.MGDL_TO_MMOLL, profile.getUnits());
|
||||||
+ " avgΔ" + deltastring(glucoseStatus.avgdelta, glucoseStatus.avgdelta * Constants.MGDL_TO_MMOLL, profile.getUnits());
|
} else {
|
||||||
} else {
|
line1 += " " +
|
||||||
line1 += " " +
|
ctx.getString(R.string.old_data) +
|
||||||
ctx.getString(R.string.old_data) +
|
" ";
|
||||||
" ";
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PumpInterface pump = MainApp.getConfigBuilder();
|
PumpInterface pump = MainApp.getConfigBuilder();
|
||||||
|
|
Loading…
Reference in a new issue