Skip to content

Commit

Permalink
Revert "Cap sales from the current data endpoint at 200 (Universalis-…
Browse files Browse the repository at this point in the history
…FFXIV#1363)"

This reverts commit 68efca9.
  • Loading branch information
karashiiro committed Jul 29, 2024
1 parent f3d4ffc commit 877c625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public async Task<IActionResult> Get(
var nEntries = 5;
if (int.TryParse(entriesToReturn, out var queryEntries))
{
nEntries = Math.Min(Math.Max(0, queryEntries), 200);
nEntries = Math.Min(Math.Max(0, queryEntries), 999999);
}

var statsWithinMs = 604800000L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public async Task<IActionResult> Get(
var nEntries = 5;
if (int.TryParse(entriesToReturn, out var queryEntries))
{
nEntries = Math.Min(Math.Max(0, queryEntries), 200);
nEntries = Math.Min(Math.Max(0, queryEntries), 999999);
}

var statsWithinMs = 604800000L;
Expand Down

0 comments on commit 877c625

Please sign in to comment.