Skip to content

Commit

Permalink
Fix bug only showing at most 200 runs.
Browse files Browse the repository at this point in the history
  • Loading branch information
luckytyphlosion committed Dec 25, 2020
1 parent a675d98 commit e3e65c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async function fetchVerificationQueue()

let paginationLinks = pagination["links"];
runsAndPagination = await srcApiGetFromUrlAwait(paginationLinks[paginationLinks.length - 1]["uri"]);
allRuns.push(...runsAndPagination["data"]);
runData.push(...runsAndPagination["data"]);
pagination = runsAndPagination["pagination"];

failsafeCount++;
Expand Down

0 comments on commit e3e65c7

Please sign in to comment.