We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a4810 commit 3c879c0Copy full SHA for 3c879c0
backend/src/index.ts
@@ -102,7 +102,7 @@ export default {
102
103
try {
104
const ip = request.headers.get('CF-Connecting-IP') || 'unknown';
105
- const allowed = await checkRateLimit(ip,env);
+ const allowed = await checkRateLimit(ip, env);
106
if (!allowed) {
107
return new Response(JSON.stringify({ error: "Too many requests. Try again later." }), {
108
status: 429,
0 commit comments