Update index.js
Browse files
index.js
CHANGED
@@ -66,7 +66,7 @@ app.use(async (req, res, next) => {
|
|
66 |
*/
|
67 |
await IPAddressAndUpdate(realIP);
|
68 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
69 |
-
next();
|
70 |
});
|
71 |
|
72 |
app.get('/api/test', async (req, res) => {
|
|
|
66 |
*/
|
67 |
await IPAddressAndUpdate(realIP);
|
68 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
69 |
+
await next();
|
70 |
});
|
71 |
|
72 |
app.get('/api/test', async (req, res) => {
|