From 3f7bb37f7967552f0e90a2ccced18432ecddc389 Mon Sep 17 00:00:00 2001 From: Howard Chung Date: Mon, 29 Apr 2024 12:33:19 -0700 Subject: [PATCH] Update web.ts --- svc/web.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svc/web.ts b/svc/web.ts index 247fd7a9b..1c247a5ed 100644 --- a/svc/web.ts +++ b/svc/web.ts @@ -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]); } }