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:36:13 -0500
committermultiple creatures <dev@multiple-creature.party>2019-08-02 03:36:13 -0500
commitb1d125d704ae727e97c39e147814194ac7d7b9d6 (patch)
treec87df77f081d6373a5939be2ec72b60f59a0646b /app/helpers/filter_helper.rb
parente11196775fa4a960283ce21024a274bb4e5d26f6 (diff)
unbreak the universe - `Redis.cache` -> `Redis.current`
Diffstat (limited to 'app/helpers/filter_helper.rb')
-rw-r--r--app/helpers/filter_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/filter_helper.rb b/app/helpers/filter_helper.rb
index 3120f5033..1eb05ca17 100644
--- a/app/helpers/filter_helper.rb
+++ b/app/helpers/filter_helper.rb
@@ -43,10 +43,10 @@ module FilterHelper
 
   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)
+    Redis.current.sadd("filtered_threads:#{account_id}", conversation_id)
   end
 
   def filtering_thread?(account_id, conversation_id)
-    Redis.cache.sismember("filtered_threads:#{account_id}", conversation_id)
+    Redis.current.sismember("filtered_threads:#{account_id}", conversation_id)
   end
 end