We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e669a24 commit e6554f6Copy full SHA for e6554f6
Server/Api/ReplayController.cs
@@ -86,7 +86,7 @@ [FromQuery] string query
86
87
var found = ReplayParser.SearchReplays(searchMode, query, _context);
88
// Order found replays by date
89
- found = found.OrderByDescending(r => r.Date ?? DateTime.MinValue).ToList();
+ found = found.OrderByDescending(r => r.Date ?? DateTime.MinValue).Take(32 * 3).ToList();
90
91
return Ok(found);
92
}
0 commit comments