Skip to content

Commit

Permalink
fix(route): oasis (#13440)
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyRL authored Sep 29, 2023
1 parent e8caa9b commit 66e2af9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/v2/weibo/oasis/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ module.exports = async (ctx) => {
title: `$('.name-main').text().trim() + ' - 用户 - 绿洲'`,
description: `$('.desc').text().trim()`,
item: {
item: '.container .item',
title: `$('.status-desc').text()`,
description: `$('.status-desc').text() + '<br>' + $('.media-wrapper').html()`,
item: '.container .status-item',
title: `$('.status-item-title').clone().children().remove().end().text()`,
description: `$('.status-item-title').clone().children().remove().end().text() + '<br>' + $('.status-img').html()`,
link: `'https://oasis.weibo.cn/v1/h5/share?sid=' + $('.status-item-title').parent().data('id')`,
},
})
);
Expand Down

0 comments on commit 66e2af9

Please sign in to comment.