Skip to content

Commit

Permalink
quickfix: Ignore multiple consolidations. (#3862)
Browse files Browse the repository at this point in the history
  • Loading branch information
defectiveAi authored Dec 20, 2024
1 parent dcc76de commit 830b707
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ protected override async Task<IReadOnlyDictionary<Guid, ActorConsolidationDto>>

return consolidations
.Select(c => new KeyValuePair<Guid, ActorConsolidationDto>(c.ActorFromId, c))
.DistinctBy(c => c.Key)
.ToDictionary();
}
}

0 comments on commit 830b707

Please sign in to comment.