Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Risk Card has "Unknown Risk" after 1.7.0 (RC2) Update (EXPOSUREAPP-3723) #1597

Merged
merged 4 commits into from
Nov 16, 2020
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import kotlinx.coroutines.flow.MutableStateFlow

object RiskLevelRepository {

private val internalRisklevelScore = MutableStateFlow(RiskLevelConstants.UNKNOWN_RISK_INITIAL)
private val internalRisklevelScore = MutableStateFlow(getLastSuccessfullyCalculatedScore().raw)
val riskLevelScore: Flow<Int> = internalRisklevelScore

private val internalRiskLevelScoreLastSuccessfulCalculated =
Expand Down