From ad401db2fc3b90f716550917ddc596cf4f4d9955 Mon Sep 17 00:00:00 2001 From: yukineko <27853966+hideki0403@users.noreply.github.com> Date: Sun, 5 Nov 2023 17:02:54 +0900 Subject: [PATCH] =?UTF-8?q?enhance:=20=E4=B8=80=E9=83=A8=E3=81=AE=E3=82=BF?= =?UTF-8?q?=E3=82=A4=E3=83=A0=E3=83=A9=E3=82=A4=E3=83=B3=E3=81=AEquery?= =?UTF-8?q?=E3=81=ABallowPartial=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/MkTimeline.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/frontend/src/components/MkTimeline.vue b/packages/frontend/src/components/MkTimeline.vue index 845c7a414c..061c1d1829 100644 --- a/packages/frontend/src/components/MkTimeline.vue +++ b/packages/frontend/src/components/MkTimeline.vue @@ -135,6 +135,7 @@ if (props.src === 'antenna') { query = { withRenotes: props.withRenotes, withFiles: props.onlyFiles ? true : undefined, + allowPartial: true, }; } else if (props.src === 'local') { endpoint = 'notes/local-timeline'; @@ -142,6 +143,7 @@ if (props.src === 'antenna') { withRenotes: props.withRenotes, withReplies: props.withReplies, withFiles: props.onlyFiles ? true : undefined, + allowPartial: true, }; } else if (props.src === 'social') { endpoint = 'notes/hybrid-timeline'; @@ -149,6 +151,7 @@ if (props.src === 'antenna') { withRenotes: props.withRenotes, withReplies: props.withReplies, withFiles: props.onlyFiles ? true : undefined, + allowPartial: true, }; } else if (props.src === 'global') { endpoint = 'notes/global-timeline'; @@ -168,6 +171,7 @@ if (props.src === 'antenna') { query = { withFiles: props.onlyFiles ? true : undefined, listId: props.list, + allowPartial: true, }; } else if (props.src === 'channel') { endpoint = 'channels/timeline';