Skip to content

Commit

Permalink
Update web.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed Mar 16, 2024
1 parent 27157ec commit ca11d3b
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 @@ -227,7 +227,7 @@ app.get('/retrieverData', async (req, res) => {
const accountName = accountData[i].split('\t')[0];
const score = Number(await redis.hget('retrieverSteamIDs', accountName));
// Don't add high usage logons
if (score < 180) {
if (score < 190) {
await redis.sadd('retrieverDataSet', accountData[i]);
}
}
Expand Down

0 comments on commit ca11d3b

Please sign in to comment.