Skip to content

Commit

Permalink
fix(backend): 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正
Browse files Browse the repository at this point in the history
Fix #10499
  • Loading branch information
syuilo committed Apr 9, 2023
1 parent 86de46d commit 59d0d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
- 通知読み込みでエラーが発生する場合がある問題を修正
- リアクションできないことがある問題を修正
- IDをaid以外に設定している場合の問題を修正
- 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正

## 13.11.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 59d0d50

Please sign in to comment.