fix user facing error message for json errors

This commit is contained in:
Kyle Matthew Hedden 2022-10-26 20:44:18 -04:00
parent 2b09f58686
commit d7b80e87ed

View File

@ -37,8 +37,9 @@ extension JSONError: LocalizedError, CustomStringConvertible {
}
}
// Shown to customers.
public var errorDescription: String? {
return description
return MVMCoreGetterUtility.hardcodedString(withKey: HardcodedErrorUnableToProcess)
}
}