logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: e821c00e743160474072e78483f568dc4fdc6887
parent: 9b994c4aee379f7998d2ddb562a08ccff92e0b0b
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Tue,  5 Sep 2017 20:55:25 +0200

Fix mentions in direct statuses not being delivered via AP (#4806)


Diffstat:

Mapp/services/process_mentions_service.rb2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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