diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-09-05 20:55:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-05 20:55:25 +0200 |
commit | e821c00e743160474072e78483f568dc4fdc6887 (patch) | |
tree | 98b0ac4d271b1ece8c9ba4d7f298e94ee12a9b8d /app | |
parent | 9b994c4aee379f7998d2ddb562a08ccff92e0b0b (diff) |
Fix mentions in direct statuses not being delivered via AP (#4806)
Diffstat (limited to 'app')
-rw-r--r-- | app/services/process_mentions_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb index dc386c9e7..f123bf869 100644 --- a/app/services/process_mentions_service.rb +++ b/app/services/process_mentions_service.rb @@ -41,7 +41,7 @@ class ProcessMentionsService < BaseService NotifyService.new.call(mentioned_account, mention) elsif mentioned_account.ostatus? && (Rails.configuration.x.use_ostatus_privacy || !status.stream_entry.hidden?) NotificationWorker.perform_async(stream_entry_to_xml(status.stream_entry), status.account_id, mentioned_account.id) - elsif mentioned_account.activitypub? && !mentioned_account.following?(status.account) + elsif mentioned_account.activitypub? ActivityPub::DeliveryWorker.perform_async(build_json(mention.status), mention.status.account_id, mentioned_account.inbox_url) end end |