Skip to content

Commit 6024038

Browse files
committed
fix parsing of DICOM audit records; closes #478
1 parent 82cbdf6 commit 6024038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commons/audit/src/main/java/org/openehealth/ipf/commons/audit/unmarshal/dicom/DICOMAuditParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ private DicomObjectDescriptionType partipantObjectDescription(Element element) {
183183
dicom.setEncrypted(Boolean.parseBoolean(element.getChildText(ENCRYPTED)));
184184
}
185185
if (element.getChild(ANONYMIZED) != null) {
186-
dicom.setEncrypted(Boolean.parseBoolean(element.getChildText(ANONYMIZED)));
186+
dicom.setAnonymized(Boolean.parseBoolean(element.getChildText(ANONYMIZED)));
187187
}
188188
return dicom;
189189
}

0 commit comments

Comments
 (0)