Merge pull request #2864 from Philoul/Fix/TimeShiftFromWatch
Fix Timeshift for Profile Switches sent from watch
This commit is contained in:
commit
15459d1a45
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ class ProfileFunctionImpl @Inject constructor(
|
||||||
override fun createProfileSwitch(durationInMinutes: Int, percentage: Int, timeShiftInHours: Int): Boolean {
|
override fun createProfileSwitch(durationInMinutes: Int, percentage: Int, timeShiftInHours: Int): Boolean {
|
||||||
val profile = repository.getPermanentProfileSwitch(dateUtil.now()) ?: return false
|
val profile = repository.getPermanentProfileSwitch(dateUtil.now()) ?: return false
|
||||||
val profileStore = activePlugin.activeProfileSource.profile ?: return false
|
val profileStore = activePlugin.activeProfileSource.profile ?: return false
|
||||||
val ps = buildProfileSwitch(profileStore, profile.profileName, durationInMinutes, percentage, 0, dateUtil.now()) ?: return false
|
val ps = buildProfileSwitch(profileStore, profile.profileName, durationInMinutes, percentage, timeShiftInHours, dateUtil.now()) ?: return false
|
||||||
val validity = ProfileSealed.PS(ps).isValid(
|
val validity = ProfileSealed.PS(ps).isValid(
|
||||||
rh.gs(app.aaps.core.ui.R.string.careportal_profileswitch),
|
rh.gs(app.aaps.core.ui.R.string.careportal_profileswitch),
|
||||||
activePlugin.activePump,
|
activePlugin.activePump,
|
||||||
|
|
Loading…
Reference in a new issue