From 19eb8d4613d918c4a89d20d3beaa85c39e048106 Mon Sep 17 00:00:00 2001 From: anatawa12 Date: Sun, 4 Aug 2024 20:18:45 +0900 Subject: [PATCH] fix: V[RS]TL doesn't have withReplies toggle (#92) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: V[RS]TL doesn't have withReplies toggle * docs(changelog): VRTL VSTLでリプライのトグルが表示されない問題 --- CHANGELOG-VRTL.md | 1 + packages/frontend/src/timelines.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-VRTL.md b/CHANGELOG-VRTL.md index fdbe020749ba..a05e7a56d6db 100644 --- a/CHANGELOG-VRTL.md +++ b/CHANGELOG-VRTL.md @@ -3,6 +3,7 @@ VRTLのブランチで行われた変更点をまとめています +- fic(frontend): VRTL VSTLでリプライのトグルが表示されない問題 (anatawa12#92) - 2024/08/04 - chore(backend): VRTL参加サーバーの取得に失敗したときのリトライの間隔を短く - feat: VRTL/VSTLに連合なし投稿を含めるかを選択可能に - もともとのVRTL/VSTLでは連合なし投稿が常に含まれていましたが、正しくVRTL/VSTLのノートを表現するために含めないようにできるようになりました diff --git a/packages/frontend/src/timelines.ts b/packages/frontend/src/timelines.ts index c9b60bbe188f..665817cc0be4 100644 --- a/packages/frontend/src/timelines.ts +++ b/packages/frontend/src/timelines.ts @@ -62,7 +62,7 @@ export function availableBasicTimelines(): BasicTimelineType[] { } export function hasWithReplies(timeline: BasicTimelineType | undefined | null): boolean { - return timeline === 'local' || timeline === 'social'; + return timeline === 'local' || timeline === 'social' || timeline === 'vmimi-relay' || timeline === 'vmimi-relay-social'; } export function hasWithLocalOnly(timeline: BasicTimelineType | undefined | null): boolean {