diff options
author | David Yip <yipdw@member.fsf.org> | 2017-10-21 15:44:47 -0500 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2017-10-21 15:44:47 -0500 |
commit | ad86c86fa8e0d577b1a6c7411367420e6beea4ea (patch) | |
tree | e0be0cb0ca1e454b8e3cd73d6471163018e6efc0 /app/lib | |
parent | 670e6a33f8eeca628707dc020e02ce32502d74a4 (diff) |
Apply keyword mutes to reblogs.
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/feed_manager.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb index 1123f88bb..576188324 100644 --- a/app/lib/feed_manager.rb +++ b/app/lib/feed_manager.rb @@ -138,7 +138,9 @@ class FeedManager end def filter_from_home?(status, receiver_id) - return true if Glitch::KeywordMute.matcher_for(receiver_id) =~ status.text + keyword_mute_matcher = Glitch::KeywordMute.matcher_for(receiver_id) + + return true if keyword_mute_matcher =~ status.text return false if receiver_id == status.account_id return true if status.reply? && (status.in_reply_to_id.nil? || status.in_reply_to_account_id.nil?) @@ -161,6 +163,7 @@ class FeedManager return should_filter elsif status.reblog? # Filter out a reblog should_filter = Block.where(account_id: status.reblog.account_id, target_account_id: receiver_id).exists? # or if the author of the reblogged status is blocking me + should_filter ||= keyword_mute_matcher.matches?(status.reblog.text) should_filter ||= AccountDomainBlock.where(account_id: receiver_id, domain: status.reblog.account.domain).exists? # or the author's domain is blocked return should_filter end |