Add null check for total insulin delivered in Omnipod tab
This commit is contained in:
parent
f94c73a911
commit
15b0701d06
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ class OmnipodFragment : DaggerFragment() {
|
||||||
.getTempBasalFromHistory(System.currentTimeMillis())?.toStringFull() ?: "-"
|
.getTempBasalFromHistory(System.currentTimeMillis())?.toStringFull() ?: "-"
|
||||||
|
|
||||||
// total delivered
|
// total delivered
|
||||||
omnipod_total_delivered.text = if (podStateManager.isPodActivationCompleted) {
|
omnipod_total_delivered.text = if (podStateManager.isPodActivationCompleted && podStateManager.totalInsulinDelivered != null) {
|
||||||
resourceHelper.gs(R.string.omnipod_total_delivered, podStateManager.totalInsulinDelivered - OmnipodConst.POD_SETUP_UNITS);
|
resourceHelper.gs(R.string.omnipod_total_delivered, podStateManager.totalInsulinDelivered - OmnipodConst.POD_SETUP_UNITS);
|
||||||
} else {
|
} else {
|
||||||
"-"
|
"-"
|
||||||
|
|
Loading…
Reference in a new issue