about summary refs log tree commit diff
path: root/app/services
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/services
parente11196775fa4a960283ce21024a274bb4e5d26f6 (diff)
unbreak the universe - `Redis.cache` -> `Redis.current`
Diffstat (limited to 'app/services')
-rw-r--r--app/services/post_status_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb
index 7106110a8..0dd2841e5 100644
--- a/app/services/post_status_service.rb
+++ b/app/services/post_status_service.rb
@@ -109,7 +109,7 @@ class PostStatusService < BaseService
 
   def unfilter_thread_on_reply
     return if @in_reply_to.nil?
-    Redis.cache.srem("filtered_threads:#{@account.id}", @in_reply_to.conversation_id)
+    Redis.current.srem("filtered_threads:#{@account.id}", @in_reply_to.conversation_id)
   end
 
   def set_local_only