From 4c3935bf8070837b65da1723e9000cb4f2b79616 Mon Sep 17 00:00:00 2001 From: anatawa12 Date: Thu, 7 Sep 2023 16:48:47 +0900 Subject: [PATCH] chore(frontend): renote of note in sensitive channel is now home renote by default. (#11476) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(frontend): renote of note in sensitive channel is now home renote by default. * docs: センシティブチャンネルのNoteのReNoteはデフォルトでHome TLに流れるようになりました --------- Co-authored-by: syuilo --- CHANGELOG.md | 1 + packages/frontend/src/components/MkNote.vue | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f058786b5..7fa9f696d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ - プロフィールにその人が作ったPlayの一覧出せるように - メニューのスイッチの動作を改善 - 絵文字ピッカーの検索の表示件数を100件に増加 +- センシティブチャンネルのNoteのReNoteはデフォルトでHome TLに流れるようになりました - 投稿フォームのプレビューの表示状態を記憶するように - ノート詳細ページ読み込み時のパフォーマンスを改善 - AiScriptからMisskeyサーバーAPIを呼び出す際の制限を撤廃 diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 85af667fb..bedacbce2 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -319,9 +319,15 @@ function renote(viaKeyboard = false) { const configuredVisibility = defaultStore.state.rememberNoteVisibility ? defaultStore.state.visibility : defaultStore.state.defaultNoteVisibility; const localOnly = defaultStore.state.rememberNoteVisibility ? defaultStore.state.localOnly : defaultStore.state.defaultNoteLocalOnly; + let visibility = appearNote.visibility; + visibility = smallerVisibility(visibility, configuredVisibility); + if (appearNote.channel?.isSensitive) { + visibility = smallerVisibility(visibility, 'home'); + } + os.api('notes/create', { localOnly, - visibility: smallerVisibility(appearNote.visibility, configuredVisibility), + visibility, renoteId: appearNote.id, }).then(() => { os.toast(i18n.ts.renoted);