summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-11-29 20:09:41 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-11-29 20:09:41 +0900
commit048929181595c096d8223d1955878f18a1daf0f7 (patch)
treef72803ac0fe60d820ffccb133a2097d8b041e505 /src/client/app/common/scripts
parent[Client] Fix #3427 (diff)
downloadsharkey-048929181595c096d8223d1955878f18a1daf0f7.tar.gz
sharkey-048929181595c096d8223d1955878f18a1daf0f7.tar.bz2
sharkey-048929181595c096d8223d1955878f18a1daf0f7.zip
Refactor
Diffstat (limited to 'src/client/app/common/scripts')
-rw-r--r--src/client/app/common/scripts/should-mute-note.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/scripts/should-mute-note.ts b/src/client/app/common/scripts/should-mute-note.ts
index 65d25d17cb..08d7f24a71 100644
--- a/src/client/app/common/scripts/should-mute-note.ts
+++ b/src/client/app/common/scripts/should-mute-note.ts
@@ -20,7 +20,7 @@ export default function(me, settings, note) {
}
}
- if (!isMyNote && note.text && settings.mutedWords.some(q => q.length > 0 && !q.some(word => word == '' || !note.text.includes(word)))) {
+ if (!isMyNote && note.text && settings.mutedWords.some(q => q.length > 0 && !q.some(word => !note.text.includes(word)))) {
return true;
}