From 390bfec6da74218e2ebd4eea16dff586b25177d9 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 1 Sep 2017 21:26:01 +0200 Subject: Avoid sending some ActivityPub payloads if the receiver will get them through distribution (#4739) --- app/services/reblog_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/services/reblog_service.rb') diff --git a/app/services/reblog_service.rb b/app/services/reblog_service.rb index 5ed16c64b..3c4e5847f 100644 --- a/app/services/reblog_service.rb +++ b/app/services/reblog_service.rb @@ -36,7 +36,7 @@ class ReblogService < BaseService NotifyService.new.call(reblogged_status.account, reblog) elsif reblogged_status.account.ostatus? NotificationWorker.perform_async(stream_entry_to_xml(reblog.stream_entry), reblog.account_id, reblogged_status.account_id) - elsif reblogged_status.account.activitypub? + elsif reblogged_status.account.activitypub? && !reblogged_status.account.following?(reblog.account) ActivityPub::DeliveryWorker.perform_async(build_json(reblog), reblog.account_id, reblogged_status.account.inbox_url) end end -- cgit