Skip to content

Commit

Permalink
Work around "same identifier" error (MID-5102)
Browse files Browse the repository at this point in the history
This is an experimental fix.
  • Loading branch information
mederly committed Jan 25, 2019
1 parent acc81c1 commit 81b6d57
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -136,7 +136,7 @@ public <T extends ObjectType, F extends ObjectType> void applyMetadataModify(Obj
List<String> approverComments = new ArrayList<>();
if (workflowManager != null) {
for (ObjectReferenceType approverRef : workflowManager.getApprovedBy(task, result)) {
approverReferenceValues.add(new PrismReferenceValue(approverRef.getOid()));
approverReferenceValues.add(new PrismReferenceValue(approverRef.getOid(), UserType.COMPLEX_TYPE));
}
approverComments.addAll(workflowManager.getApproverComments(task, result));
}
Expand Down

0 comments on commit 81b6d57

Please sign in to comment.