diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-11 01:31:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 01:31:03 +0200 |
commit | 87fdd139b890e60f752bf71e3b09d79eaefcf7b5 (patch) | |
tree | 16f65da67dabe51ac5f9418b2f924fb102284d60 /app/services/remove_status_service.rb | |
parent | 790d3bc6370f1baf0d00ccf89e81387204c65194 (diff) |
Do not push DMs into the home feed (#8940)
* Do not push DMs into the home feed * Show DMs column after sending a DM, if DMs column is not already shown
Diffstat (limited to 'app/services/remove_status_service.rb')
-rw-r--r-- | app/services/remove_status_service.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index 1a53093b8..1ee645e6d 100644 --- a/app/services/remove_status_service.rb +++ b/app/services/remove_status_service.rb @@ -21,7 +21,6 @@ class RemoveStatusService < BaseService remove_from_hashtags remove_from_public remove_from_media if status.media_attachments.any? - remove_from_direct if status.direct_visibility? @status.destroy! @@ -153,13 +152,6 @@ class RemoveStatusService < BaseService Redis.current.publish('timeline:public:local:media', @payload) if @status.local? end - def remove_from_direct - @mentions.each do |mention| - Redis.current.publish("timeline:direct:#{mention.account.id}", @payload) if mention.account.local? - end - Redis.current.publish("timeline:direct:#{@account.id}", @payload) if @account.local? - end - def redis Redis.current end |