Merge pull request #666 from nightscout/revert-665-dev

Revert "NullPointerException while processing Bolus entries"
This commit is contained in:
Milos Kozak 2021-09-08 19:19:14 +02:00 committed by GitHub
commit 2cbfad42fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -473,7 +473,7 @@ class MedtronicHistoryData @Inject constructor(
for (bolus in entryList) {
val bolusDTO = bolus.decodedData["Object"] as BolusDTO
var type: DetailedBolusInfo.BolusType? = DetailedBolusInfo.BolusType.NORMAL
var type: DetailedBolusInfo.BolusType = DetailedBolusInfo.BolusType.NORMAL
var multiwave = false
if (bolusDTO.bolusType == PumpBolusType.Extended) {
@ -500,7 +500,7 @@ class MedtronicHistoryData @Inject constructor(
temporaryId = entryWithTempId.temporaryId
pumpSyncStorage.removeBolusWithTemporaryId(temporaryId)
boluses.remove(entryWithTempId)
type = entryWithTempId.bolusData?.bolusType
type = entryWithTempId.bolusData!!.bolusType
}
}