diff options
| author | xianon <xianon@hotmail.co.jp> | 2023-02-20 17:08:05 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-20 17:08:05 +0900 |
| commit | b055f516c0e3ce342d20bb2088ae76a02bbc0269 (patch) | |
| tree | 32dfba135dff1d2aef39838d10c10349ff35ec3b /packages/backend/src | |
| parent | update deps (diff) | |
| download | misskey-b055f516c0e3ce342d20bb2088ae76a02bbc0269.tar.gz misskey-b055f516c0e3ce342d20bb2088ae76a02bbc0269.tar.bz2 misskey-b055f516c0e3ce342d20bb2088ae76a02bbc0269.zip | |
削除済みのユーザーが deleteActor される時の動作を修正する (#9980)
Diffstat (limited to 'packages/backend/src')
| -rw-r--r-- | packages/backend/src/core/activitypub/ApInboxService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/activitypub/ApInboxService.ts b/packages/backend/src/core/activitypub/ApInboxService.ts index 9bd80b6066..21d2d16ed8 100644 --- a/packages/backend/src/core/activitypub/ApInboxService.ts +++ b/packages/backend/src/core/activitypub/ApInboxService.ts @@ -452,7 +452,7 @@ export class ApInboxService { const user = await this.usersRepository.findOneByOrFail({ id: actor.id }); if (user.isDeleted) { - this.logger.info('skip: already deleted'); + return 'skip: already deleted'; } const job = await this.queueService.createDeleteAccountJob(actor); |