Skip to content

Commit

Permalink
Merge pull request #432 from qligier/ql_audit_parser_ws
Browse files Browse the repository at this point in the history
Normalize text of ParticipantObjectQuery in DICOM audit parser
  • Loading branch information
unixoid authored Nov 8, 2023
2 parents 9b0bd10 + 2c4221b commit d1642a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private ParticipantObjectIdentificationType participantObjectIdentificationType(
poi.setParticipantObjectSensitivity(element.getAttributeValue(PARTICIPANT_OBJECT_SENSITIVITY));
poi.setParticipantObjectName(element.getChildText(PARTICIPANT_OBJECT_NAME));
if (element.getChild(PARTICIPANT_OBJECT_QUERY) != null) {
poi.setParticipantObjectQuery(Base64.getDecoder().decode(element.getChildText(PARTICIPANT_OBJECT_QUERY)));
poi.setParticipantObjectQuery(Base64.getDecoder().decode(element.getChildTextTrim(PARTICIPANT_OBJECT_QUERY)));
}
mapInto(poi.getParticipantObjectDetails(), element, PARTICIPANT_OBJECT_DETAIL, this::valuePair);
mapInto(poi.getParticipantObjectDescriptions(), element, PARTICIPANT_OBJECT_DESCRIPTION, this::partipantObjectDescription);
Expand Down

0 comments on commit d1642a1

Please sign in to comment.