Action decoding failed

This commit is contained in:
Danish Phiroz 2024-09-10 16:04:18 -05:00
parent 3c8af09752
commit 4dcc7f8d5d
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ public protocol MVMCoreJSONActionHandlerProtocol: MVMCoreActionHandlerProtocol {
errorObject.requestUrl = browserUrl
}
if let humanReadableMessage = (error as? HumanReadableDecodingErrorProtocol)?.readableDescription {
errorObject.messageToLog = humanReadableMessage
errorObject.messageToLog = "Failed to decode the \(actionType ?? "actions") model." + humanReadableMessage
}
defaultHandleActionError(errorObject, additionalData: additionalData)
}