EOPATCH2: fix NS carbs sync
This commit is contained in:
parent
294f3cb789
commit
53c13684ea
1 changed files with 1 additions and 10 deletions
|
@ -360,7 +360,7 @@ public class PatchManager implements IPatchManager {
|
||||||
|
|
||||||
if (detailedBolusInfo.insulin > 0) {
|
if (detailedBolusInfo.insulin > 0) {
|
||||||
pumpSync.syncBolusWithPumpId(
|
pumpSync.syncBolusWithPumpId(
|
||||||
detailedBolusInfo.timestamp,
|
dateUtil.now(), // Use real timestamp to have it different from carbs (otherwise NS sync fail)
|
||||||
detailedBolusInfo.insulin,
|
detailedBolusInfo.insulin,
|
||||||
detailedBolusInfo.getBolusType(),
|
detailedBolusInfo.getBolusType(),
|
||||||
dateUtil.now(),
|
dateUtil.now(),
|
||||||
|
@ -368,15 +368,6 @@ public class PatchManager implements IPatchManager {
|
||||||
patchManager.pm.getPatchSerial()
|
patchManager.pm.getPatchSerial()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (detailedBolusInfo.carbs > 0) {
|
|
||||||
pumpSync.syncCarbsWithTimestamp(
|
|
||||||
detailedBolusInfo.getCarbsTimestamp() != null ? detailedBolusInfo.getCarbsTimestamp() : detailedBolusInfo.timestamp,
|
|
||||||
detailedBolusInfo.carbs,
|
|
||||||
null,
|
|
||||||
PumpType.USER,
|
|
||||||
patchManager.pm.getPatchSerial()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue