From 9a393a1c4af457e9dcd544fee03e13c40195b2d2 Mon Sep 17 00:00:00 2001 From: pjy <519048105@qq.com> Date: Fri, 11 Jul 2025 16:28:01 +0800 Subject: [PATCH] fix: fix kaopu news api url (#19577) Co-authored-by: pujinyao --- lib/routes/kaopu/news.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/kaopu/news.ts b/lib/routes/kaopu/news.ts index 6ebd6ba0a..7cc12c9fe 100644 --- a/lib/routes/kaopu/news.ts +++ b/lib/routes/kaopu/news.ts @@ -28,7 +28,7 @@ async function handler(ctx) { const rootUrl = 'https://kaopu.news'; const currentUrl = `${rootUrl}/${language === 'zh-hant' ? 'zh-hant' : 'index'}.html`; // API PATH: https://kaopucdn.azureedge.net/jsondata/news_list_beta_hans_0.json - const apiUrl = `https://kaopucdn.azureedge.net/jsondata/news_list_beta_han${language === 'zh-hant' ? 't' : 's'}_0.json`; + const apiUrl = `https://kaopustorage.blob.core.windows.net/jsondata/news_list_beta_han${language === 'zh-hant' ? 't' : 's'}_0.json`; const response = await got({ method: 'get',