diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-08-18 15:07:15 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-08-18 15:14:09 -0500 |
commit | caec7b5ca7061235dd46bcfa08020baff01e3fd6 (patch) | |
tree | 88c4e899bd405e41c9143e3bb7c2dd82e563a163 /app/lib | |
parent | 32e37245faaa2a29e6c748c5f4401226fb7662c4 (diff) |
fix custom filter logic
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/status_filter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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? |