diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-17 18:45:42 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-17 18:45:42 +1100 |
commit | 77fa7ac886ac96ab02a014b64fb155250599a790 (patch) | |
tree | 27598093285dc1379d1822c0f279914372570b71 /src/bundle | |
parent | Remove /api/-/monitorz (diff) | |
download | server-77fa7ac886ac96ab02a014b64fb155250599a790.tar.xz |
Remove bad banned words implementation
Diffstat (limited to 'src/bundle')
-rw-r--r-- | src/bundle/Server.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bundle/Server.ts b/src/bundle/Server.ts index 9ba715d1..1ae9511c 100644 --- a/src/bundle/Server.ts +++ b/src/bundle/Server.ts @@ -7,7 +7,7 @@ import * as Gateway from "@fosscord/gateway"; import { CDNServer } from "@fosscord/cdn"; import express from "express"; import { green, bold, yellow } from "picocolors"; -import { Config, initDatabase, BannedWords } from "@fosscord/util"; +import { Config, initDatabase } from "@fosscord/util"; import * as Sentry from "@sentry/node"; import * as Tracing from "@sentry/tracing"; import * as Integrations from "@sentry/integrations"; @@ -30,7 +30,6 @@ process.on("SIGTERM", async () => { async function main() { await initDatabase(); await Config.init(); - await BannedWords.init(); //Sentry if (Config.get().sentry.enabled) { |