From db98160eed66ff11e754990880c8b017482de867 Mon Sep 17 00:00:00 2001 From: CaoMeiYouRen <40430746+CaoMeiYouRen@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:53:45 +0800 Subject: [PATCH] =?UTF-8?q?fix(mihoyo/bbs):=20=E4=BF=AE=E5=A4=8D=20timelin?= =?UTF-8?q?e=20API=20URL=20(#17806)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新 timeline API URL 以匹配最新的 API 路径 --- lib/routes/mihoyo/bbs/timeline.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/mihoyo/bbs/timeline.ts b/lib/routes/mihoyo/bbs/timeline.ts index af60ba5f8a70ac..0a2f1b14f46537 100644 --- a/lib/routes/mihoyo/bbs/timeline.ts +++ b/lib/routes/mihoyo/bbs/timeline.ts @@ -47,7 +47,7 @@ async function handler(ctx) { page_size, }; const link = 'https://www.miyoushe.com/ys/timeline'; - const url = 'https://bbs-api.miyoushe.com/post/wapi/timelines'; + const url = 'https://bbs-api.miyoushe.com/painter/wapi/timeline/list'; const response = await got({ method: 'get', url,