From 444e81569018a71a1e50deef37419c4a2b10f3ef Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Sat, 17 Dec 2022 18:45:42 +1100 Subject: Remove bad banned words implementation --- src/bundle/Server.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/bundle') 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) { -- cgit 1.5.1