diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-12-12 05:38:08 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-12-12 05:38:08 -0600 |
commit | dc8e5eae2c7a478090016b3bf54338ea89ea690b (patch) | |
tree | 947dd22e3681cfe764c0eace54a8a7560cbf8491 /app | |
parent | 7d0e47f8379d924c486bf451038d52913c2c5503 (diff) |
better key constraints on imported statuses, sharekeys, & normalized statuses tables
Diffstat (limited to 'app')
-rw-r--r-- | app/services/post_status_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 8b0f8ac05..dc1a3bcdc 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -130,7 +130,7 @@ class PostStatusService < BaseService end def unfilter_thread_on_reply - Redis.current.srem("filtered_threads:#{@account.id}", @in_reply_to.conversation_id) + ConversationKick.where(account_id: @in_reply_to.account_id, conversation: @in_reply_to.conversation_id).destroy_all end def inherit_reply_rejection |