diff options
author | ThibG <thib@sitedethib.com> | 2018-05-21 17:51:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-21 17:51:06 +0200 |
commit | 162f1863a74efdbd2912fef671338c545721742c (patch) | |
tree | 9ed60f78e2e8acc823bccb7c75ecaa3fdb1b7ab6 /app/services/batched_remove_status_service.rb | |
parent | 98ecadbf99aa823164608f796a40ab1cd067bdc2 (diff) | |
parent | a4c9bda771c04526005f708dfb9ca2ccced60d52 (diff) |
Merge pull request #499 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/services/batched_remove_status_service.rb')
-rw-r--r-- | app/services/batched_remove_status_service.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/services/batched_remove_status_service.rb b/app/services/batched_remove_status_service.rb index cb65a2256..ace51a1fc 100644 --- a/app/services/batched_remove_status_service.rb +++ b/app/services/batched_remove_status_service.rb @@ -81,6 +81,11 @@ class BatchedRemoveStatusService < BaseService redis.publish('timeline:public', payload) redis.publish('timeline:public:local', payload) if status.local? + if status.media_attachments.any? + redis.publish('timeline:public:media', payload) + redis.publish('timeline:public:local:media', payload) if status.local? + end + @tags[status.id].each do |hashtag| redis.publish("timeline:hashtag:#{hashtag}", payload) redis.publish("timeline:hashtag:#{hashtag}:local", payload) if status.local? |