Co-authored-by: sorairo <sorairo@shiosyakeyakini.info> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
parent
75034d9240
commit
9022b05fea
2 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@
|
||||||
### Server
|
### Server
|
||||||
- Enhance: センシティブワードの設定がハッシュタグトレンドにも適用されるようになりました
|
- Enhance: センシティブワードの設定がハッシュタグトレンドにも適用されるようになりました
|
||||||
- Fix: 1702718871541-ffVisibility.jsのdownが壊れている
|
- Fix: 1702718871541-ffVisibility.jsのdownが壊れている
|
||||||
|
- Fix:「非センシティブのみ(リモートはいいねのみ)」を設定していても、センシティブに設定されたカスタム絵文字をリアクションできる問題を修正
|
||||||
- Fix: ロールアサイン時の通知で,ロールアイコンが縮小されずに表示される問題を修正
|
- Fix: ロールアサイン時の通知で,ロールアイコンが縮小されずに表示される問題を修正
|
||||||
|
|
||||||
## 2023.12.0
|
## 2023.12.0
|
||||||
|
|
|
@ -138,7 +138,7 @@ export class ReactionService {
|
||||||
reaction = reacterHost ? `:${name}@${reacterHost}:` : `:${name}:`;
|
reaction = reacterHost ? `:${name}@${reacterHost}:` : `:${name}:`;
|
||||||
|
|
||||||
// センシティブ
|
// センシティブ
|
||||||
if ((note.reactionAcceptance === 'nonSensitiveOnly') && emoji.isSensitive) {
|
if ((note.reactionAcceptance === 'nonSensitiveOnly' || note.reactionAcceptance === 'nonSensitiveOnlyForLocalLikeOnlyForRemote') && emoji.isSensitive) {
|
||||||
reaction = FALLBACK;
|
reaction = FALLBACK;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue