From 048929181595c096d8223d1955878f18a1daf0f7 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 29 Nov 2018 20:09:41 +0900 Subject: Refactor --- src/client/app/common/scripts/should-mute-note.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client/app/common/scripts') 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; } -- cgit v1.2.3-freya