Skip to content

Commit

Permalink
updated radar rules
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 23, 2023
1 parent f7810e3 commit ee8f3ea
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Shared/Core/radar-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -7414,7 +7414,12 @@
".":[ { title:"报道",
docs:"https://docs.rsshub.app/routes/new-media#wan-dian-latepost-bao-dao",
source:"/",
target:(params, url) => `/latepost/${new URL(url).searchParams.get('proma')}` } ] },
target:(params, url) => {
url = new URL(url);
const proma = url.searchParams.get('proma');

return `/latepost${proma ? `/${proma}` : ''}`;
} } ] },
"lativ.com.tw":{ _name:"lativ",
www:[ { title:"订阅商品价格",
docs:"https://docs.rsshub.app/routes/shopping#lativ",
Expand Down Expand Up @@ -12425,6 +12430,11 @@
source:[ "/zsxw/ggtz.htm",
"/" ],
target:"/tongji/yjs" } ] },
"tophub.today":{ _name:"今日热榜",
".":[ { title:"榜单",
docs:"https://docs.rsshub.app/routes/new-media#jin-ri-re-bang-bang-dan",
source:[ "/n/:id" ],
target:"/tophub/:id" } ] },
"topys.cn":{ _name:"TOPYS",
".":[ { title:"关键字",
docs:"https://docs.rsshub.app/routes/new-media#topys-guan-jian-zi",
Expand Down

0 comments on commit ee8f3ea

Please sign in to comment.