mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-17 19:29:02 +00:00
add missing error handler
This commit is contained in:
parent
037fd43a4a
commit
a7f6f34997
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ class ArmoireActivity: BaseActivity() {
|
|||
finish()
|
||||
}
|
||||
binding.equipButton.setOnClickListener {
|
||||
equipmentKey?.let { it1 -> inventoryRepository.equip("gear", it1).subscribe() }
|
||||
equipmentKey?.let { it1 -> inventoryRepository.equip("gear", it1).subscribe({}, RxErrorHandler.handleEmptyError()) }
|
||||
finish()
|
||||
}
|
||||
binding.dropRateButton.setOnClickListener {
|
||||
|
|
|
|||
Loading…
Reference in a new issue