android: run ClawViewModel#toggleSave on IO Dispatcher

This commit is contained in:
Harsh Shandilya 2022-05-14 19:32:46 +05:30
parent 733cae4815
commit cf9e8487ff
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -57,7 +57,7 @@ constructor(
}
fun toggleSave(post: SavedPost) {
viewModelScope.launch {
viewModelScope.launch(Dispatchers.IO) {
val saved = isPostSaved(post)
if (saved) {
repository.removePost(post)