diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-29 20:09:41 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-29 20:09:41 +0900 |
| commit | 048929181595c096d8223d1955878f18a1daf0f7 (patch) | |
| tree | f72803ac0fe60d820ffccb133a2097d8b041e505 /src/client/app/common/scripts | |
| parent | [Client] Fix #3427 (diff) | |
| download | sharkey-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.ts | 2 |
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; } |