Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
Reverted change
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Gullmark committed Mar 4, 2019
1 parent 717f4a2 commit e7608dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LadderParser/Services/LadderService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private async Task UpdateLadder(string leagueName)
{
var LadderPlayerList = result.Entries.
Where(t => !ladder.Any(x => x.Name == t.Character.Name))
.Select(t => new LadderPlayerModel(t, sortMode)).Where(p => p.Rank.Overall > 0).ToList();
.Select(t => new LadderPlayerModel(t, sortMode)).ToList();

ladder.AddRange(LadderPlayerList);
if (ladder.Count == result.Total || result.Entries.Count == 0)
Expand Down

0 comments on commit e7608dd

Please sign in to comment.