fix compilation error
This commit is contained in:
parent
e3f7608de7
commit
b7e705b581
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ abstract class ActionViewModelBase(
|
|||
onError = { throwable ->
|
||||
logger.error(LTag.PUMP, "Caught exception in while executing action in ActionViewModelBase", throwable)
|
||||
_isActionExecutingLiveData.postValue(false)
|
||||
_actionResultLiveData.postValue(PumpEnactResult(injector).success(false).comment(throwable.message))
|
||||
_actionResultLiveData.postValue(PumpEnactResult(injector).success(false).comment(
|
||||
throwable.message ?: "Caught exception in while executing action in ActionViewModelBase"))
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue