fix: segmentfault/channel (#12191)

* chore(deps): bump proxy-chain from 2.2.1 to 2.3.0

Bumps [proxy-chain](https://github.com/apify/proxy-chain) from 2.2.1 to 2.3.0.
- [Release notes](https://github.com/apify/proxy-chain/releases)
- [Changelog](https://github.com/apify/proxy-chain/blob/master/CHANGELOG.md)
- [Commits](https://github.com/apify/proxy-chain/compare/v2.2.1...v2.3.0)

---
updated-dependencies:
- dependency-name: proxy-chain
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix(route): /segmentfault/channel

* style: auto format

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
lyqluis
2023-03-30 03:34:25 +08:00
committed by GitHub
co-authored by dependabot[bot] github-actions[bot]
parent eed561dee7
commit a7c9154e05
+2 -2
View File
@@ -16,8 +16,8 @@ module.exports = async (ctx) => {
const list = $('ul.bg-transparent.list-group.list-group-flush > li')
.slice(0, 10)
.map((_, item) => ({
link: new URL($(item).find('div.content > h5 > a').attr('href'), host).href,
title: $(item).find('div.content > h5 > a').text(),
link: new URL($(item).find('div.content > h3.h5 > a').attr('href'), host).href,
title: $(item).find('div.content > h3.h5 > a').text(),
author: $(item).find('span.name').text(),
}))
.get();