Merge branch 'release/10_4_0' into 'develop'

release/10_4_0 hotfix merge

Co-authored-by: Scott Pfeil <Scott.Pfeil3@verizonwireless.com>
Co-authored-by: Pfeil, Scott Robert <scott.pfeil3@verizonwireless.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core/-/merge_requests/236
This commit is contained in:
Hedden, Kyle Matthew 2022-11-11 19:44:38 +00:00
commit 8e586e5f01
2 changed files with 6 additions and 1 deletions

View File

@ -40,6 +40,10 @@ open class ActionOpenUrlHandler: MVMCoreJSONActionHandlerProtocol {
return "Failed to open url: \(url.absoluteString)"
}
}
public var errorCode: Int {
return ErrorCode.linkawayFailed.rawValue
}
}
/// Creates a url and calls open(url: URL)

View File

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