The valueS()
function in DsiPDataOption
was updated to now return specialCode
if there is one.
// dsiPDataOption.cm Old: extend public str valueS() { if (_dataType.Character) return code; ... } New: extend public str valueS() { if (_dataType.Character) return specialCode ?? code; ... }