Skip to content

Commit

Permalink
Fix #997
Browse files Browse the repository at this point in the history
  • Loading branch information
BartoszCichecki committed Oct 21, 2023
1 parent db1f858 commit 90e5775
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public static async Task<Dictionary<string, int>> ReadAsync()
}).ConfigureAwait(false);
return result
.OfType<(string, int)>()
.DistinctBy(sm => sm.Item1)
.ToDictionary(sm => sm.Item1, sm => sm.Item2);
}
}
Expand Down

0 comments on commit 90e5775

Please sign in to comment.