summary refs log tree commit diff
path: root/src/bundle/Server.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-17 18:45:42 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-17 18:45:42 +1100
commit444e81569018a71a1e50deef37419c4a2b10f3ef (patch)
treefefec776056da164b39f7165494b81e5667f41f8 /src/bundle/Server.ts
parentRemove /api/-/monitorz (diff)
downloadserver-444e81569018a71a1e50deef37419c4a2b10f3ef.tar.xz
Remove bad banned words implementation
Diffstat (limited to 'src/bundle/Server.ts')
-rw-r--r--src/bundle/Server.ts3
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) {