fixes bug when updating relay list that used keep the previous list.

This commit is contained in:
Vitor Pamplona 2023-12-05 21:48:05 -05:00
parent 41ef1abf0e
commit ce2cfb7c86

View File

@ -32,10 +32,9 @@ class NewRelayListViewModel : ViewModel() {
relays.let {
viewModelScope.launch(Dispatchers.IO) {
account.saveRelayList(it.value)
clear()
}
}
clear()
}
fun loadRelayDocuments() {
@ -120,7 +119,7 @@ class NewRelayListViewModel : ViewModel() {
fun deleteAll() {
_relays.update { relays ->
relays.dropWhile { relays.isNotEmpty() }
emptyList()
}
}