Skip to content

Commit

Permalink
Update web.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung authored Apr 29, 2024
1 parent ff8e03e commit 3f7bb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svc/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ app.get('/retrieverData', async (req, res) => {
const success = Number(await redis.hget('retrieverSuccessSteamIDs', accountName));
const ratio = success / reqs;
// Don't add high usage logons or high fail logons
if (reqs < 150 && (reqs < 10 || ratio > 0)) {
if (reqs < 180 && (reqs < 10 || ratio > 0)) {
await redis.sadd('retrieverDataSet', accountData[i]);
}
}
Expand Down

0 comments on commit 3f7bb37

Please sign in to comment.