From e11196775fa4a960283ce21024a274bb4e5d26f6 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Fri, 2 Aug 2019 03:01:08 -0500 Subject: make sure the thread filter option won't affect your own threads or those you're participating in --- app/helpers/filter_helper.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'app/helpers') diff --git a/app/helpers/filter_helper.rb b/app/helpers/filter_helper.rb index 861f37551..3120f5033 100644 --- a/app/helpers/filter_helper.rb +++ b/app/helpers/filter_helper.rb @@ -42,6 +42,7 @@ module FilterHelper end def filter_thread(account_id, conversation_id) + return if Status.where(account_id: account_id, conversation_id: conversation_id).exists? Redis.cache.sadd("filtered_threads:#{account_id}", conversation_id) end -- cgit