diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-04-09 10:19:57 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-04-09 10:19:57 +0900 |
| commit | 59d0d507d5cc9b87a517b9fbec3aa288dc0859f2 (patch) | |
| tree | 61fda1a1b44776e8d3a4a17511f2d510b6d9791b | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-59d0d507d5cc9b87a517b9fbec3aa288dc0859f2.tar.gz misskey-59d0d507d5cc9b87a517b9fbec3aa288dc0859f2.tar.bz2 misskey-59d0d507d5cc9b87a517b9fbec3aa288dc0859f2.zip | |
fix(backend): 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正
Fix #10499
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | packages/backend/src/core/activitypub/ApDeliverManagerService.ts | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ec1b2277f..5e6fa2cf4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ - 通知読み込みでエラーが発生する場合がある問題を修正 - リアクションできないことがある問題を修正 - IDをaid以外に設定している場合の問題を修正 +- 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正 ## 13.11.0 diff --git a/packages/backend/src/core/activitypub/ApDeliverManagerService.ts b/packages/backend/src/core/activitypub/ApDeliverManagerService.ts index 70a6d32fe2..62a2a33a19 100644 --- a/packages/backend/src/core/activitypub/ApDeliverManagerService.ts +++ b/packages/backend/src/core/activitypub/ApDeliverManagerService.ts @@ -186,7 +186,7 @@ class DeliverManager { for (const following of followers) { const inbox = following.followerSharedInbox ?? following.followerInbox; - inboxes.set(inbox, following.followerSharedInbox === null); + inboxes.set(inbox, following.followerSharedInbox != null); } } |