Skip to content

Commit

Permalink
Fix: フレンドサーバーに投稿削除が配送されない問題 (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode authored Nov 7, 2023
1 parent d7f07ae commit ec0002c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/remove_status_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def remove_from_remote_reach

status_reach_finder = StatusReachFinder.new(@status, unsafe: true)

ActivityPub::DeliveryWorker.push_bulk(status_reach_finder.inboxes + status_reach_finder.inboxes_for_misskey, limit: 1_000) do |inbox_url|
ActivityPub::DeliveryWorker.push_bulk(status_reach_finder.all_inboxes, limit: 1_000) do |inbox_url|
[signed_activity_json, @account.id, inbox_url]
end
end
Expand Down

0 comments on commit ec0002c

Please # to comment.