From a7ca7c558cc194ed0c2f326afb608fc248e68f0a Mon Sep 17 00:00:00 2001 From: pseudoyu Date: Fri, 27 Mar 2026 18:12:15 +0800 Subject: [PATCH] fix(route/fanbox): add withPinned query param --- lib/routes/fanbox/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/fanbox/index.ts b/lib/routes/fanbox/index.ts index e4cbeec3b..58782586e 100644 --- a/lib/routes/fanbox/index.ts +++ b/lib/routes/fanbox/index.ts @@ -52,7 +52,7 @@ async function handler(ctx: Context): Promise { // ignore } - const postListResponse = (await ofetch(`https://api.fanbox.cc/post.listCreator?creatorId=${creator}&limit=20`, { headers: getHeaders() })) as PostListResponse; + const postListResponse = (await ofetch(`https://api.fanbox.cc/post.listCreator?creatorId=${creator}&limit=20&withPinned=true`, { headers: getHeaders() })) as PostListResponse; const items = await Promise.all(postListResponse.body.map((i) => parseItem(i))); return {