From afb755449b95eb1be524ce8f4c2bef126d2c7b3c Mon Sep 17 00:00:00 2001 From: Tsuyumi <40047364+SnowAgar25@users.noreply.github.com> Date: Fri, 11 Oct 2024 03:56:58 +0800 Subject: [PATCH] fix(misskey): Handle renotes properly to improve content display (#17078) --- lib/routes/misskey/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/misskey/utils.ts b/lib/routes/misskey/utils.ts index 29a340ae85a47c..1828697096bb4f 100644 --- a/lib/routes/misskey/utils.ts +++ b/lib/routes/misskey/utils.ts @@ -60,9 +60,9 @@ async function getUserTimelineByUsername(username, site) { json: { userId: accountId, withChannelNotes: true, + withRenotes: false, limit: 10, offset: 0, - withFiles: true, }, }); const accountData = usernotesResponse.data;