summary refs log tree commit diff
path: root/api/src/Server.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-16 15:06:31 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-16 15:06:31 +0200
commit8a197bbeaa60e9cea41342a4709bd5079da51b22 (patch)
tree6cd468b6c19feabecf0f16c489e33dd12bb83e70 /api/src/Server.ts
parent:bug: fix release caxa (diff)
downloadserver-8a197bbeaa60e9cea41342a4709bd5079da51b22.tar.xz
update Rate Limit with new event transmission
Diffstat (limited to 'api/src/Server.ts')
-rw-r--r--api/src/Server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/Server.ts b/api/src/Server.ts

index 332c28de..ef72df5f 100644 --- a/api/src/Server.ts +++ b/api/src/Server.ts
@@ -64,7 +64,7 @@ export class FosscordServer extends Server { this.app = api; api.use(Authentication); - initRateLimits(api); + await initRateLimits(api); await initTranslation(api); this.routes = await this.registerRoutes(path.join(__dirname, "routes", "/"));