mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:03:09 +02:00
parent
86de46debf
commit
59d0d507d5
2 changed files with 2 additions and 1 deletions
|
@ -30,6 +30,7 @@
|
||||||
- 通知読み込みでエラーが発生する場合がある問題を修正
|
- 通知読み込みでエラーが発生する場合がある問題を修正
|
||||||
- リアクションできないことがある問題を修正
|
- リアクションできないことがある問題を修正
|
||||||
- IDをaid以外に設定している場合の問題を修正
|
- IDをaid以外に設定している場合の問題を修正
|
||||||
|
- 連合しているインスタンスについて予期せず配送が全て停止されることがある問題を修正
|
||||||
|
|
||||||
## 13.11.0
|
## 13.11.0
|
||||||
|
|
||||||
|
|
|
@ -186,7 +186,7 @@ class DeliverManager {
|
||||||
|
|
||||||
for (const following of followers) {
|
for (const following of followers) {
|
||||||
const inbox = following.followerSharedInbox ?? following.followerInbox;
|
const inbox = following.followerSharedInbox ?? following.followerInbox;
|
||||||
inboxes.set(inbox, following.followerSharedInbox === null);
|
inboxes.set(inbox, following.followerSharedInbox != null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue