0
0
Fork 0

Fix Delete activity handling when the status has been reblogged (#4729)

This commit is contained in:
unarist 2017-08-29 05:08:11 +09:00 committed by Eugen Rochko
parent 7876aed134
commit 938cd2875b
2 changed files with 26 additions and 2 deletions

View file

@ -16,8 +16,8 @@ class ActivityPub::Activity::Delete < ActivityPub::Activity
private
def forward_for_reblogs(status)
ActivityPub::RawDistributionWorker.push_bulk(status.reblogs.includes(:account).references(:account).merge(Account.local).pluck(:account_id)) do |account|
[payload, account.id]
ActivityPub::RawDistributionWorker.push_bulk(status.reblogs.includes(:account).references(:account).merge(Account.local).pluck(:account_id)) do |account_id|
[payload, account_id]
end
end