PR Review comments addressed

This commit is contained in:
Danish Phiroz 2024-09-12 11:01:21 -05:00
parent 4dcc7f8d5d
commit d75330f1cc

View File

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