oop web : fix wrong readings, this is still test, oop web is still disabled

This commit is contained in:
Johan Degraeve 2019-08-14 09:23:45 +02:00
parent 01edfc2afb
commit 261779d995
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class LibreRawGlucoseData: GlucoseData {
}
convenience init(timeStamp:Date, unsmoothedGlucose: Double) {
self.init(timeStamp: timeStamp, glucoseLevelRaw: 0.0, glucoseLevelFiltered: 0.0, unsmoothedGlucose: unsmoothedGlucose)
self.init(timeStamp: timeStamp, glucoseLevelRaw: unsmoothedGlucose, glucoseLevelFiltered: unsmoothedGlucose, unsmoothedGlucose: unsmoothedGlucose)
}
}