diff --git a/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift b/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift index 948aaed..0c4a80b 100644 --- a/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift +++ b/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift @@ -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 ?? "") action model. " + humanReadableMessage } defaultHandleActionError(errorObject, additionalData: additionalData) }