We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31880bd + 638733d commit 6c20d1eCopy full SHA for 6c20d1e
lib/commands/implementations/banphrase.js
@@ -53,7 +53,7 @@ function banPhraseTwitch(defaultPunishmentDuration, punishmentType) {
53
function banPhraseDGG() {
54
return (input, services) => {
55
const matched = /(\d+[HMDSWwhmds])?\s?(.*)/.exec(input);
56
- const bannedPhrase = _.get(matched, 2, '').toLowerCase();
+ const bannedPhrase = _.get(matched, 2, '');
57
services.bannedPhrases.addBannedPhrase(bannedPhrase);
58
return new CommandOutput(null, 'Phrase banned!');
59
};
0 commit comments