updated method to always return true if a handler was found, even if there is an error

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2021-10-28 10:05:36 -05:00
parent 9a158c4909
commit 7f5419d81b

View File

@ -55,20 +55,16 @@ public extension MVMCoreActionHandler {
//call the handleAction of the handler
actionHandler.handleAction(actionModel, additionalData: additionalData, delegateObject: delegateObject)
//found the handler and executed the action
return true
} catch {
//log the error
if let errorObject = MVMCoreErrorObject.createErrorObject(for: error, location: "") {
MVMCoreActionHandler.shared()?.defaultHandleActionError(errorObject, additionalData: additionalData)
}
//there was a handler however something failed
return false
}
//found the handler, returning true no matter if there was a failure in the do...catch
return true
}
/// Start action on current thread.