Skip to content

Commit

Permalink
fix: issue #13897 (#13899)
Browse files Browse the repository at this point in the history
  • Loading branch information
muzea authored Nov 28, 2023
1 parent 89ce36f commit 36623fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/v2/aliyun/notice.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = async (ctx) => {
const url = `https://help.aliyun.com/noticelist/${typeMap[type] || typeMap[0]}.html`;
const response = await got({ method: 'get', url });
const $ = cheerio.load(response.data);
const list = $('ul > li.y-clear')
const list = $('ul > li.notice-li')
.map((i, e) => {
const element = $(e);
const title = element.find('a').text().trim();
Expand Down

0 comments on commit 36623fe

Please sign in to comment.