format
This commit is contained in:
parent
e98e1fb485
commit
b9af0c3f6f
|
@ -364,7 +364,7 @@ class OmnipodDashPumpPlugin @Inject constructor(
|
||||||
}
|
}
|
||||||
Completable.error(java.lang.IllegalStateException("Command not confirmed"))
|
Completable.error(java.lang.IllegalStateException("Command not confirmed"))
|
||||||
} else {
|
} else {
|
||||||
showNotification(Notification.PROFILE_SET_OK, "Profile set OK", Notification.INFO, null);
|
showNotification(Notification.PROFILE_SET_OK, "Profile set OK", Notification.INFO, null)
|
||||||
|
|
||||||
Completable.complete()
|
Completable.complete()
|
||||||
}
|
}
|
||||||
|
@ -413,6 +413,14 @@ class OmnipodDashPumpPlugin @Inject constructor(
|
||||||
it.isChanged(
|
it.isChanged(
|
||||||
resourceHelper,
|
resourceHelper,
|
||||||
R.string.key_omnipod_common_expiration_reminder_hours_before_shutdown
|
R.string.key_omnipod_common_expiration_reminder_hours_before_shutdown
|
||||||
|
) ||
|
||||||
|
it.isChanged(
|
||||||
|
resourceHelper,
|
||||||
|
R.string.key_omnipod_common_low_reservoir_alert_enabled
|
||||||
|
) ||
|
||||||
|
it.isChanged(
|
||||||
|
resourceHelper,
|
||||||
|
R.string.key_omnipod_common_low_reservoir_alert_units
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
commandQueue.customCommand(CommandUpdateAlertConfiguration(), null)
|
commandQueue.customCommand(CommandUpdateAlertConfiguration(), null)
|
||||||
|
@ -551,9 +559,12 @@ class OmnipodDashPumpPlugin @Inject constructor(
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
if (podStateManager.activeCommand != null) {
|
if (podStateManager.activeCommand != null) {
|
||||||
val sound = if (sp.getBoolean(R.string
|
val sound = if (sp.getBoolean(
|
||||||
|
R.string
|
||||||
.key_omnipod_common_notification_uncertain_bolus_sound_enabled,
|
.key_omnipod_common_notification_uncertain_bolus_sound_enabled,
|
||||||
true))
|
true
|
||||||
|
)
|
||||||
|
)
|
||||||
R.raw.boluserror
|
R.raw.boluserror
|
||||||
else
|
else
|
||||||
0
|
0
|
||||||
|
|
Loading…
Reference in a new issue