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リクエストをストリーム経由で行うオプションを廃止
|
* クライアントのAPIリクエストをストリーム経由で行うオプションを廃止
|
||||||
* 一部箇所でカスタム絵文字が適用されていないのを修正
|
* 一部箇所でカスタム絵文字が適用されていないのを修正
|
||||||
|
|
||||||
|
|
|
@ -476,12 +476,9 @@ export default async function(
|
||||||
properties: properties,
|
properties: properties,
|
||||||
withoutChunks: isLink,
|
withoutChunks: isLink,
|
||||||
isRemote: isLink,
|
isRemote: isLink,
|
||||||
isSensitive: (sensitive !== null && sensitive !== undefined)
|
isSensitive: isLocalUser(user) && user.settings.alwaysMarkNsfw ? true :
|
||||||
? sensitive
|
(sensitive !== null && sensitive !== undefined)
|
||||||
: isLocalUser(user)
|
? sensitive
|
||||||
? user.settings.alwaysMarkNsfw
|
|
||||||
? true
|
|
||||||
: false
|
|
||||||
: false
|
: false
|
||||||
} as IMetadata;
|
} as IMetadata;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue