Merge pull request #3337 from SpiritCroc/stuck-login

Fix login navigation getting stuck when the app was compiled with no-op analytics provider
This commit is contained in:
Benoit Marty 2024-08-28 09:56:44 +02:00 committed by GitHub
commit c5461b669f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,7 +98,10 @@ class DefaultFtueService @Inject constructor(
} else {
getNextStep(FtueStep.AnalyticsOptIn)
}
FtueStep.AnalyticsOptIn -> null
FtueStep.AnalyticsOptIn -> {
updateState()
null
}
}
private suspend fun isAnyStepIncomplete(): Boolean {