fix(backend): 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正

Fix #10499
This commit is contained in:
syuilo 2023-04-09 10:19:57 +09:00
parent 86de46debf
commit 59d0d507d5
2 changed files with 2 additions and 1 deletions

View file

@ -30,6 +30,7 @@
- 通知読み込みでエラーが発生する場合がある問題を修正
- リアクションできないことがある問題を修正
- IDをaid以外に設定している場合の問題を修正
- 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正
## 13.11.0

View file

@ -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);
}
}