randydev commited on
Commit
34cd3a2
·
verified ·
1 Parent(s): 81d3ebe

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +2 -1
index.js CHANGED
@@ -113,7 +113,8 @@ app.use(async (req, res, next) => {
113
  res.status(403).send("access is blocked");
114
  }
115
  */
116
- await CheckIsBlocked(realIP)
 
117
  await IPAddressAndUpdate(realIP);
118
  console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
119
  await next();
 
113
  res.status(403).send("access is blocked");
114
  }
115
  */
116
+ let results = await CheckIsBlocked(realIP)
117
+ console.log("Check blocked", results)
118
  await IPAddressAndUpdate(realIP);
119
  console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
120
  await next();