From caec7b5ca7061235dd46bcfa08020baff01e3fd6 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sun, 18 Aug 2019 15:07:15 -0500 Subject: fix custom filter logic --- app/lib/status_filter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/lib') diff --git a/app/lib/status_filter.rb b/app/lib/status_filter.rb index a28c8282a..d70ed1d21 100644 --- a/app/lib/status_filter.rb +++ b/app/lib/status_filter.rb @@ -34,7 +34,7 @@ class StatusFilter return true if account.user_hides_replies_of_blocker? && reply_to_blocker? # filtered by user? - return true if phrase_filtered?(status, account.id, 'thread') + return true if phrase_filtered?(status, account.id, nil) # kajiht has no filters if status has no mentions return false if status&.mentions.blank? -- cgit