diff options
author | David Yip <yipdw@member.fsf.org> | 2017-12-03 17:28:30 -0600 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-02-10 02:40:27 -0600 |
commit | 29b5b46c87979f49e2d1c4e574429ac649ff2bdf (patch) | |
tree | 2ba099daa48eb27a47dab2b654a5ec8de70887a4 /app/lib | |
parent | 3405ea6dd9fde38ba1044933fec2ec7fa909ea8c (diff) |
Strip HTML from keyword mute input. #234.
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/feed_manager.rb | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb index fe5ebfc36..7507b37d2 100644 --- a/app/lib/feed_manager.rb +++ b/app/lib/feed_manager.rb @@ -178,22 +178,7 @@ class FeedManager end def keyword_filter?(status, receiver_id) - text_matcher = Glitch::KeywordMute.text_matcher_for(receiver_id) - tag_matcher = Glitch::KeywordMute.tag_matcher_for(receiver_id) - - should_filter = text_matcher.matches?(status.text) - should_filter ||= text_matcher.matches?(status.spoiler_text) - should_filter ||= tag_matcher.matches?(status.tags) - - if status.reblog? - reblog = status.reblog - - should_filter ||= text_matcher.matches?(reblog.text) - should_filter ||= text_matcher.matches?(reblog.spoiler_text) - should_filter ||= tag_matcher.matches?(status.tags) - end - - should_filter + Glitch::FilterHelper.new(receiver_id).matches?(status) end def filter_from_mentions?(status, receiver_id) |