Skip to content

Commit

Permalink
feat(opcua): add support for OpcuaMessageError
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Aug 3, 2023
1 parent 21e76ba commit 0dff535
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public static MessagePDU staticParse(ReadBuffer readBuffer, Boolean response)
builder = OpcuaMessageResponse.staticParseMessagePDUBuilder(readBuffer, response);
} else if (EvaluationHelper.equals(messageType, (String) "ERR")
&& EvaluationHelper.equals(response, (boolean) true)) {
builder = OpcuaMessageERR.staticParseMessagePDUBuilder(readBuffer, response);
builder = OpcuaMessageError.staticParseMessagePDUBuilder(readBuffer, response);
}
if (builder == null) {
throw new ParseException(
Expand Down

0 comments on commit 0dff535

Please sign in to comment.