It's better to make convertion in generateTempTarget for uel.log
Sorry
This reverts commit 9db58726
This commit is contained in:
parent
9db587269a
commit
f10080686b
1 changed files with 2 additions and 7 deletions
|
@ -507,11 +507,6 @@ class ActionStringHandler @Inject constructor(
|
||||||
val duration = SafeParse.stringToInt(act[2])
|
val duration = SafeParse.stringToInt(act[2])
|
||||||
var low = SafeParse.stringToDouble(act[3])
|
var low = SafeParse.stringToDouble(act[3])
|
||||||
var high = SafeParse.stringToDouble(act[4])
|
var high = SafeParse.stringToDouble(act[4])
|
||||||
val isMGDL = java.lang.Boolean.parseBoolean(act[1])
|
|
||||||
if (!isMGDL) {
|
|
||||||
low *= Constants.MMOLL_TO_MGDL
|
|
||||||
high *= Constants.MMOLL_TO_MGDL
|
|
||||||
}
|
|
||||||
generateTempTarget(duration, low, high)
|
generateTempTarget(duration, low, high)
|
||||||
} else if ("wizard2" == act[0]) {
|
} else if ("wizard2" == act[0]) {
|
||||||
if (lastBolusWizard != null) { //use last calculation as confirmed string matches
|
if (lastBolusWizard != null) { //use last calculation as confirmed string matches
|
||||||
|
@ -576,8 +571,8 @@ class ActionStringHandler @Inject constructor(
|
||||||
timestamp = System.currentTimeMillis(),
|
timestamp = System.currentTimeMillis(),
|
||||||
duration = TimeUnit.MINUTES.toMillis(duration.toLong()),
|
duration = TimeUnit.MINUTES.toMillis(duration.toLong()),
|
||||||
reason = TemporaryTarget.Reason.WEAR,
|
reason = TemporaryTarget.Reason.WEAR,
|
||||||
lowTarget = low,
|
lowTarget = Profile.toMgdl(low, profileFunction.getUnits()),
|
||||||
highTarget = high
|
highTarget = Profile.toMgdl(high, profileFunction.getUnits())
|
||||||
)).subscribe({ result ->
|
)).subscribe({ result ->
|
||||||
result.inserted.forEach { aapsLogger.debug(LTag.DATABASE, "Inserted temp target $it") }
|
result.inserted.forEach { aapsLogger.debug(LTag.DATABASE, "Inserted temp target $it") }
|
||||||
result.updated.forEach { aapsLogger.debug(LTag.DATABASE, "Updated temp target $it") }
|
result.updated.forEach { aapsLogger.debug(LTag.DATABASE, "Updated temp target $it") }
|
||||||
|
|
Loading…
Reference in a new issue