summaryrefslogtreecommitdiff
path: root/src/api/api-handler.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/api-handler.ts')
-rw-r--r--src/api/api-handler.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/api-handler.ts b/src/api/api-handler.ts
index c0714ad69a..ccd4e89a04 100644
--- a/src/api/api-handler.ts
+++ b/src/api/api-handler.ts
@@ -35,6 +35,7 @@ export default async (endpoint: IEndpoint, req: express.Request, res: express.Re
try {
await limitter(endpoint, ctx); // Rate limit
} catch (e) {
+ // drop request if limit exceeded
return reply(429);
}
}