EN: Correctly set since last scan in seconds not milliseconds

This commit is contained in:
Marvin W 2021-01-06 12:00:59 +01:00
parent 91c8e43ab9
commit 8e7544bd14
No known key found for this signature in database
GPG Key ID: 072E9235DB996F2A
1 changed files with 2 additions and 2 deletions

View File

@ -450,7 +450,7 @@ class ExposureNotificationServiceImpl(private val context: Context, private val
private fun ScanInstance.Builder.apply(subExposure: MergedSubExposure): ScanInstance.Builder {
return this
.setSecondsSinceLastScan(subExposure.duration.coerceAtMost(5 * 60 * 1000L).toInt())
.setSecondsSinceLastScan(subExposure.duration.coerceAtMost(5 * 60).toInt())
.setMinAttenuationDb(subExposure.attenuation) // FIXME: We use the average for both, because we don't store the minimum attenuation yet
.setTypicalAttenuationDb(subExposure.attenuation)
}
@ -460,7 +460,7 @@ class ExposureNotificationServiceImpl(private val context: Context, private val
for (subExposure in this) {
res.add(ScanInstance.Builder().apply(subExposure).build())
if (subExposure.duration > 5 * 60 * 1000L) {
res.add(ScanInstance.Builder().apply(subExposure).setSecondsSinceLastScan((subExposure.duration - 5 * 60 * 1000L).coerceAtMost(5 * 60 * 1000L).toInt()).build())
res.add(ScanInstance.Builder().apply(subExposure).setSecondsSinceLastScan((subExposure.duration - 5 * 60).coerceAtMost(5 * 60).toInt()).build())
}
}
return res