From d99753d060ba6b56f371e2ac5f046c6e9efabc39 Mon Sep 17 00:00:00 2001 From: KMY Date: Tue, 7 Nov 2023 18:28:01 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=E3=83=95=E3=83=AC=E3=83=B3=E3=83=89?= =?UTF-8?q?=E3=82=B5=E3=83=BC=E3=83=90=E3=83=BC=E3=81=AB=E6=8A=95=E7=A8=BF?= =?UTF-8?q?=E5=89=8A=E9=99=A4=E3=81=8C=E9=85=8D=E9=80=81=E3=81=95=E3=82=8C?= =?UTF-8?q?=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/remove_status_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index 38dcbbcf4d57f6..2e9d0648b2b6e9 100644 --- a/app/services/remove_status_service.rb +++ b/app/services/remove_status_service.rb @@ -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