about summary refs log tree commit diff
path: root/app/helpers/filter_helper.rb
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-08-02 03:01:08 -0500
committermultiple creatures <dev@multiple-creature.party>2019-08-02 03:01:08 -0500
commite11196775fa4a960283ce21024a274bb4e5d26f6 (patch)
tree89393a659c3da8f4058b9f248ea677c0c8d1c92f /app/helpers/filter_helper.rb
parent7cfc0f0dced56dd2d425ffe7151f5aa5dc0d79eb (diff)
make sure the thread filter option won't affect your own threads or those you're participating in
Diffstat (limited to 'app/helpers/filter_helper.rb')
-rw-r--r--app/helpers/filter_helper.rb1
1 files changed, 1 insertions, 0 deletions
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