mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-12-03 00:17:24 +00:00
EN: Correctly set since last scan in seconds not milliseconds
This commit is contained in:
parent
91c8e43ab9
commit
8e7544bd14
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue