diff --git a/docs/new-media.md b/docs/new-media.md index f3a0d8a01f..b633f71bd4 100644 --- a/docs/new-media.md +++ b/docs/new-media.md @@ -4250,11 +4250,19 @@ wechat-feeds 来源[已停止更新](https://github.com/hellodword/wechat-feeds/ ### 最新新聞 - + -| 最新 | 娛樂 | 生活 | 社會 | 政治 | 國際 | 財經 | 飲食旅遊 | 房市 | 時尚 | 車市 | 健康 | 體育 | 3C | -| --- | ------------- | ---- | ----- | -------- | ------------- | ------- | --------- | -------- | ------- | ---- | ------ | ------ | ------ | -| new | entertainment | life | local | politics | international | finance | lifestyle | property | fashion | auto | health | sports | gadget | +| 首頁 | 最新 | 焦點 | 熱門 | 娛樂 | 生活 | 女神 | 社會 | +| ----- | ------ | --------- | --- | ------------- | ---- | -------- | ----- | +| today | latest | recommend | hit | entertainment | life | gorgeous | local | + +| 政治 | 國際 | 財經 | 區塊鏈 | 房市 | 時尚 | 體育 | +| -------- | ------------- | ------- | ---------- | -------- | ------- | ------ | +| politics | international | finance | blockchain | property | fashion | sports | + +| 旅遊美食 | 3C 車市 | 蘋理 | +| --------- | ------ | ----- | +| lifestyle | gadget | forum | diff --git a/lib/v2/nextapple/realtime.js b/lib/v2/nextapple/realtime.js index dd0836f32d..6d072b0cb4 100644 --- a/lib/v2/nextapple/realtime.js +++ b/lib/v2/nextapple/realtime.js @@ -4,7 +4,7 @@ const cheerio = require('cheerio'); const asyncPool = require('tiny-async-pool'); module.exports = async (ctx) => { - const category = ctx.params.category ?? 'new'; + const category = ctx.params.category ?? 'today'; const currentUrl = `https://tw.nextapple.com/realtime/${category}`; const response = await got(currentUrl); const $ = cheerio.load(response.data);