Skip to content

Commit

Permalink
Fixing sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
tpill90 committed Aug 22, 2024
1 parent cb3dc62 commit 70985cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EpicPrefill/Handlers/EpicGamesApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ internal async Task<List<GameAsset>> GetOwnedAppsAsync()
}

_ansiConsole.LogMarkupLine($"Retrieved {Magenta(filteredApps.Count)} owned apps", timer);
return filteredApps;
return filteredApps.OrderBy(e => e.Title, StringComparer.OrdinalIgnoreCase).ToList();
}

//TODO comment
Expand Down

0 comments on commit 70985cf

Please sign in to comment.