mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 06:33:09 +02:00
Fix: properly handle cc followers (#13009)
* Fix: properly handle cc followers Fix #13001 * Update CHANGELOG.md * Fix syntax error
This commit is contained in:
parent
bcb4560f0d
commit
0283142d0e
2 changed files with 2 additions and 1 deletions
|
@ -48,6 +48,7 @@
|
|||
- Fix: `notes/create`で、`text`が空白文字のみで構成されているか`null`であって、かつ`text`だけであるリクエストに対するレスポンスが400になるように変更
|
||||
- Fix: `notes/create`で、`text`が空白文字のみで構成されていてかつリノート、ファイルまたは投票を含んでいるリクエストに対するレスポンスの`text`が`""`から`null`になるように変更
|
||||
- Fix: ipv4とipv6の両方が利用可能な環境でallowedPrivateNetworksが設定されていた場合プライベートipの検証ができていなかった問題を修正
|
||||
- Fix: properly handle cc followers
|
||||
|
||||
## 2023.12.2
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ export class ApAudienceService {
|
|||
};
|
||||
}
|
||||
|
||||
if (toGroups.followers.length > 0) {
|
||||
if (toGroups.followers.length > 0 || ccGroups.followers.length > 0) {
|
||||
return {
|
||||
visibility: 'followers',
|
||||
mentionedUsers,
|
||||
|
|
Loading…
Reference in a new issue