From dabdaf14d2b28fb74365709aa8ad33ef4ce48a9a Mon Sep 17 00:00:00 2001 From: tamaina Date: Mon, 7 Jul 2025 12:37:16 +0900 Subject: [PATCH] =?UTF-8?q?perform(One)Activity=E3=81=A7=E3=83=AD=E3=83=BC?= =?UTF-8?q?=E3=82=AB=E3=83=AB=E5=87=8D=E7=B5=90=E3=81=A7=E5=85=A8=E9=83=A8?= =?UTF-8?q?=E5=BC=BE=E3=81=84=E3=81=A6=E3=81=97=E3=81=BE=E3=81=86=E3=81=AE?= =?UTF-8?q?=E3=81=AF=E3=82=84=E3=82=81=E3=82=88=E3=81=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/backend/src/core/activitypub/ApInboxService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/activitypub/ApInboxService.ts b/packages/backend/src/core/activitypub/ApInboxService.ts index e88f60b806..623fde4d63 100644 --- a/packages/backend/src/core/activitypub/ApInboxService.ts +++ b/packages/backend/src/core/activitypub/ApInboxService.ts @@ -141,7 +141,7 @@ export class ApInboxService { @bindThis public async performOneActivity(actor: MiRemoteUser, activity: IObject, resolver?: Resolver): Promise { - if (actor.isSuspended) return; + // ここでは凍結されているかどうかはチェックせず、各処理で判断する if (isCreate(activity)) { return await this.create(actor, activity, resolver);