diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-04-14 22:45:25 -0500 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-04-14 22:45:25 -0500 |
commit | 4df533fb8cca04c38cd44debb118fef569bcb7c0 (patch) | |
tree | 281fc96ef7e4e8d46774faa7a935ecceb8e7e7f9 | |
parent | 1858d515752988b2376d7917efd66dbfd0047ae6 (diff) | |
download | skyblock-api-4df533fb8cca04c38cd44debb118fef569bcb7c0.tar.gz skyblock-api-4df533fb8cca04c38cd44debb118fef569bcb7c0.tar.bz2 skyblock-api-4df533fb8cca04c38cd44debb118fef569bcb7c0.zip |
make cf-connecting-ip lowercase
-rw-r--r-- | build/index.js | 2 | ||||
-rw-r--r-- | src/index.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/index.js b/build/index.js index dad9312..4dbe69a 100644 --- a/build/index.js +++ b/build/index.js @@ -19,7 +19,7 @@ const limiter = express_rate_limit_1.default({ }, keyGenerator: (req) => { var _a; - return ((_a = req.headers['Cf-Connecting-Ip']) !== null && _a !== void 0 ? _a : req.ip).toString(); + return ((_a = req.headers['cf-connecting-ip']) !== null && _a !== void 0 ? _a : req.ip).toString(); } }); app.use(limiter); diff --git a/src/index.ts b/src/index.ts index 274df36..6976882 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,7 +15,7 @@ const limiter = rateLimit({ return req.headers.key === process.env.key }, keyGenerator: (req: express.Request) => { - return (req.headers['Cf-Connecting-Ip'] ?? req.ip).toString() + return (req.headers['cf-connecting-ip'] ?? req.ip).toString() } }) |