From f09b65e1084bacad76d954dac62424c58f86cbbf Mon Sep 17 00:00:00 2001 From: Alys Date: Wed, 3 Apr 2019 20:50:33 +1000 Subject: [PATCH] add swear word - TRIGGER / CONTENT WARNING: assault, slurs, swearwords, etc This adds "pewdiepie" to the list of banned words because "subscribe to pewdiepie" is semi-common spam in the Tavern, and because there is sometimes hate speech in the YouTube channel and in some material posted by pewdiepie's fans. --- website/server/libs/bannedWords.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/server/libs/bannedWords.js b/website/server/libs/bannedWords.js index 7b50c77b85..f341708710 100644 --- a/website/server/libs/bannedWords.js +++ b/website/server/libs/bannedWords.js @@ -165,6 +165,8 @@ let bannedWords = [ 'heroin', 'cocaine', + + 'pewdiepie', ]; module.exports = bannedWords;