forked from FoundKeyGang/FoundKey
常にメディアを閲覧注意として投稿するオプションが機能してなかった問題を修正
This commit is contained in:
parent
1df9c1005f
commit
875d793512
2 changed files with 4 additions and 6 deletions
|
@ -14,6 +14,7 @@ unreleased
|
|||
* ハッシュタグ判定の強化
|
||||
* ストーク機能の廃止
|
||||
* 関係のない返信がタイムラインに流れる問題を修正
|
||||
* 常にメディアを閲覧注意として投稿するオプションが機能してなかった問題を修正
|
||||
* クライアントのAPIリクエストをストリーム経由で行うオプションを廃止
|
||||
* 一部箇所でカスタム絵文字が適用されていないのを修正
|
||||
|
||||
|
|
|
@ -476,12 +476,9 @@ export default async function(
|
|||
properties: properties,
|
||||
withoutChunks: isLink,
|
||||
isRemote: isLink,
|
||||
isSensitive: (sensitive !== null && sensitive !== undefined)
|
||||
? sensitive
|
||||
: isLocalUser(user)
|
||||
? user.settings.alwaysMarkNsfw
|
||||
? true
|
||||
: false
|
||||
isSensitive: isLocalUser(user) && user.settings.alwaysMarkNsfw ? true :
|
||||
(sensitive !== null && sensitive !== undefined)
|
||||
? sensitive
|
||||
: false
|
||||
} as IMetadata;
|
||||
|
||||
|
|
Loading…
Reference in a new issue