Skip to content

Commit

Permalink
Fix settings using wrong flow for VerifySSL
Browse files Browse the repository at this point in the history
  • Loading branch information
JetpackDuba committed Nov 22, 2023
1 parent 5bc52bf commit e98dd4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class AppSettings @Inject constructor() {
val cacheCredentialsInMemoryFlow = _cacheCredentialsInMemoryFlow.asStateFlow()

private val _verifySslFlow = MutableStateFlow(cacheCredentialsInMemory)
val verifySslFlow = _cacheCredentialsInMemoryFlow.asStateFlow()
val verifySslFlow = _verifySslFlow.asStateFlow()

private val _ffMergeFlow = MutableStateFlow(ffMerge)
val ffMergeFlow = _ffMergeFlow.asStateFlow()
Expand Down

0 comments on commit e98dd4b

Please sign in to comment.