diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-08-30 15:37:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-30 15:37:02 +0200 |
commit | 7b8f26284072120701289f90bc6602ce918e4304 (patch) | |
tree | fb3fa887fcbde89b9f3a6fe200b2fbc9546719cc /app/services | |
parent | 3f51a22d3b6fb1550b373cfd17b1125cc4747c52 (diff) |
Forward ActivityPub creates that reply to local statuses (#4709)
* Forward ActivityPub creates that reply to local statuses * Fix test * Fix wrong signers
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/post_status_service.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 5ff93f21e..568f5a9e7 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -40,6 +40,7 @@ class PostStatusService < BaseService DistributionWorker.perform_async(status.id) Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id) ActivityPub::DistributionWorker.perform_async(status.id) + ActivityPub::ReplyDistributionWorker.perform_async(status.id) if status.reply? && status.thread.account.local? if options[:idempotency].present? redis.setex("idempotency:status:#{account.id}:#{options[:idempotency]}", 3_600, status.id) |