fix: Improve error handling when blocking accounts (#131)
The previous code ran the API call in a `try/catch block`, and handled errors in the `catch`. But `NetworkResult` already catches the exception and transforms it to a failure, so the error case was not handled. Replace with `NetworkResult.fold`.
This commit is contained in:
parent
50d9aedad9
commit
b947c1b289
|
@ -210,16 +210,15 @@ class AccountListFragment :
|
||||||
|
|
||||||
override fun onBlock(block: Boolean, id: String, position: Int) {
|
override fun onBlock(block: Boolean, id: String, position: Int) {
|
||||||
viewLifecycleOwner.lifecycleScope.launch {
|
viewLifecycleOwner.lifecycleScope.launch {
|
||||||
try {
|
if (block) {
|
||||||
if (!block) {
|
api.blockAccount(id)
|
||||||
api.unblockAccount(id)
|
} else {
|
||||||
} else {
|
api.unblockAccount(id)
|
||||||
api.blockAccount(id)
|
}.fold({
|
||||||
}
|
|
||||||
onBlockSuccess(block, id, position)
|
onBlockSuccess(block, id, position)
|
||||||
} catch (_: Throwable) {
|
}, {
|
||||||
onBlockFailure(block, id)
|
onBlockFailure(block, id, it)
|
||||||
}
|
},)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -240,13 +239,13 @@ class AccountListFragment :
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onBlockFailure(block: Boolean, accountId: String) {
|
private fun onBlockFailure(block: Boolean, accountId: String, throwable: Throwable) {
|
||||||
val verb = if (block) {
|
val verb = if (block) {
|
||||||
"block"
|
"block"
|
||||||
} else {
|
} else {
|
||||||
"unblock"
|
"unblock"
|
||||||
}
|
}
|
||||||
Log.e(TAG, "Failed to $verb account accountId $accountId")
|
Log.e(TAG, "Failed to $verb account accountId $accountId: $throwable")
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onRespondToFollowRequest(
|
override fun onRespondToFollowRequest(
|
||||||
|
|
Loading…
Reference in New Issue