From 9f1a497206ce76fb2f666a26ba8e7d06dd69c9aa Mon Sep 17 00:00:00 2001 From: mattyatea Date: Thu, 28 Sep 2023 16:48:02 +0900 Subject: [PATCH] =?UTF-8?q?=E3=81=84=E3=81=84=E3=81=8B=E3=82=93=E3=81=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- packages/frontend/src/components/MkTimeline.vue | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 6d4f38e7ec..1b37e5f6e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "misskey", - "version": "2023.9.1-prismisskey.1", + "version": "2023.9.1-prismisskey.2", "codename": "nasubi", "repository": { "type": "git", diff --git a/packages/frontend/src/components/MkTimeline.vue b/packages/frontend/src/components/MkTimeline.vue index 5919c1c68e..6f594ff522 100644 --- a/packages/frontend/src/components/MkTimeline.vue +++ b/packages/frontend/src/components/MkTimeline.vue @@ -92,11 +92,13 @@ if (props.src === 'antenna') { endpoint = 'notes/hybrid-timeline'; query = { withFiles: true, - withReplies: defaultStore.state.showTimelineReplies, + withRenotes: props.withRenotes, + withReplies: props.withReplies, }; connection = stream.useChannel('hybridTimeline', { withFiles: true, - withReplies: defaultStore.state.showTimelineReplies, + withRenotes: props.withRenotes, + withReplies: props.withReplies, }); connection.on('note', prepend); } else if (props.src === 'social') { @@ -113,10 +115,12 @@ if (props.src === 'antenna') { } else if (props.src === 'all') { endpoint = 'notes/hybrid-all-timeline'; query = { - withReplies: defaultStore.state.showTimelineReplies, + withRenotes: props.withRenotes, + withReplies: props.withReplies, }; connection = stream.useChannel('hybridAllTimeline', { - withReplies: defaultStore.state.showTimelineReplies, + withRenotes: props.withRenotes, + withReplies: props.withReplies, }); connection.on('note', prepend); } else if (props.src === 'global') {