Skip to content

Commit

Permalink
Merge pull request #180 from CSCfi/devel
Browse files Browse the repository at this point in the history
CSCTTV-4147 Fix bug in collection of publication author organization units
sarkikos authored Jan 13, 2025
2 parents f4f2674 + 12f4aa0 commit 26625f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspnetcore/src/Repositories/PublicationIndexRepository.cs
Original file line number Diff line number Diff line change
@@ -216,7 +216,7 @@ orderby newGroup.Key
{
if (organizationUnits.TryGetValue(organization.ParentId.Value, out var list))
{
list.Add(organization.Id.ToString());
list.Add(organization.LocalOrganizationUnitId.ToString());
}
else
{

0 comments on commit 26625f5

Please sign in to comment.