mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-27 12:05:22 +00:00
Remove flowOn in LoadingViewModel
This commit is contained in:
parent
b7de36b694
commit
27c59a8d7b
@ -49,22 +49,25 @@ internal class LoadingViewModel @Inject constructor(
|
||||
.onStart { emit(TextSecurePreferences.CONFIGURATION_SYNCED) }
|
||||
.filter { prefs.getConfigurationMessageSynced() }
|
||||
.timeout(TIMEOUT_TIME)
|
||||
.flowOn(Dispatchers.Main)
|
||||
.collectLatest { onSuccess() }
|
||||
} catch (e: Exception) {
|
||||
withContext(Dispatchers.Main) { onFail() }
|
||||
onFail()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun onSuccess() {
|
||||
_states.value = State(ANIMATE_TO_DONE_TIME)
|
||||
delay(IDLE_DONE_TIME)
|
||||
_events.emit(Event.SUCCESS)
|
||||
withContext(Dispatchers.Main) {
|
||||
_states.value = State(ANIMATE_TO_DONE_TIME)
|
||||
delay(IDLE_DONE_TIME)
|
||||
_events.emit(Event.SUCCESS)
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun onFail() {
|
||||
_events.emit(Event.TIMEOUT)
|
||||
withContext(Dispatchers.Main) {
|
||||
_events.emit(Event.TIMEOUT)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -40,7 +40,7 @@ interface Colors {
|
||||
val backgroundBubbleSent: Color get() = primary
|
||||
|
||||
// buttonFill
|
||||
val buttonFill: Color get() = text
|
||||
val buttonFill: Color
|
||||
val buttonFillText: Color get() = background
|
||||
|
||||
// primaryButtonFill
|
||||
|
Loading…
Reference in New Issue
Block a user