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') {