Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Sep 8, 2022
2 parents ef3525d + 6cce8e0 commit 5492f70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private void mapRefValues(
new AuditEventRecordReferenceType().name(entry.getKey());
for (MAuditRefValue refValue : entry.getValue()) {
AuditEventRecordReferenceValueType value = new AuditEventRecordReferenceValueType()
.oid(refValue.targetOid.toString())
.oid(refValue.targetOid != null ? refValue.targetOid.toString() : null)
.type(objectTypeToQName(refValue.targetType));
if (refValue.targetNameOrig != null) {
value.targetName(new PolyStringType(
Expand Down

0 comments on commit 5492f70

Please sign in to comment.