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); } }