Skip to content
Snippets Groups Projects
Commit 59d0d507 authored by syuilo's avatar syuilo
Browse files

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

Fix #10499
parent 86de46de
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@
- 通知読み込みでエラーが発生する場合がある問題を修正
- リアクションできないことがある問題を修正
- IDをaid以外に設定している場合の問題を修正
- 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正
## 13.11.0
......
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment