tags exclusion list matched forcing lowercase
This commit is contained in:
parent
c33378d3be
commit
1b741283d8
1 changed files with 1 additions and 1 deletions
|
|
@ -361,7 +361,7 @@ switch (message.command) {
|
||||||
.filter(word => word !== '')
|
.filter(word => word !== '')
|
||||||
.map(word => {
|
.map(word => {
|
||||||
const isExcluded = add_tags_exclusions_list.some(exclusion =>
|
const isExcluded = add_tags_exclusions_list.some(exclusion =>
|
||||||
word.includes(exclusion)
|
word.toLowerCase().includes(exclusion.toLowerCase())
|
||||||
);
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue