don't use regex on existing lists

This commit is contained in:
Riley Davis
2017-01-09 15:41:47 -07:00
parent 7bc848b801
commit b6eaf210fe
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -176,8 +176,8 @@ class Wordlist {
displayName = displayName.replace(/_/g, '');
// test each word, and fail if we find a match
const hasBadWords = wl.lists.banned.some(word => {
return new RegExp(word, 'ig').test(displayName);
const hasBadWords = wl.lists.banned.some(phrase => {
return displayName.indexOf(phrase.join('')) !== -1;
});
if (hasBadWords) {