Skip to content

Commit

Permalink
fixing bug when processing wrapperMessage for binary payload
Browse files Browse the repository at this point in the history
  • Loading branch information
ck-c8y committed Dec 25, 2024
1 parent 58000ca commit bda560f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public List<ProcessingContext<?>> call() throws Exception {
serializedPayload = Hex.encodeHexString((byte[]) payloadByte);
break;
case Object payloadObject:
serializedPayload = JsonPath.parse(payloadObject).jsonString();
serializedPayload = JsonPath.parse(payloadObject).json().toString();
break;
}

Expand Down

0 comments on commit bda560f

Please sign in to comment.