Skip to content

Commit

Permalink
Merge pull request #64 from Sphereon-Opensource/fix/CWALL-251
Browse files Browse the repository at this point in the history
fix/CWALL-251
  • Loading branch information
BtencateSphereon authored Sep 12, 2024
2 parents a2c5adf + de29629 commit c1d559b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function findCorrelationIdName(correlationId: string, parties: Party[], activeUs
}
return (
allParties?.find((contact: Party) =>
contact.identities.some((identity: Identity): boolean => identity.identifier.correlationId === correlationId),
contact.identities?.some((identity: Identity): boolean => identity.identifier.correlationId === correlationId),
)?.contact.displayName ?? correlationId
)
}
Expand Down

0 comments on commit c1d559b

Please sign in to comment.