From 261540422c2aa710c46b3b6a0a6d0900d55f95cf Mon Sep 17 00:00:00 2001 From: HF Date: Mon, 1 Aug 2022 20:36:28 +0200 Subject: [PATCH] use IPv$ subnet for whois --- src/core/isProxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/isProxy.js b/src/core/isProxy.js index 53bf075..9ab0889 100644 --- a/src/core/isProxy.js +++ b/src/core/isProxy.js @@ -140,7 +140,7 @@ async function withoutCache(f, ip) { return true; } const [result, info] = await f(ip); - saveIPInfo(ip, result, info); + saveIPInfo(ipKey, result, info); return result; }