Fix: t66y DIYgod/RSSHub#6861 (#6908)

This commit is contained in:
Aiaid 2021-02-13 10:20:00 -08:00 committed by GitHub
parent fd776393b5
commit bb7d3ad1f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ module.exports = async (ctx) => {
const $ = cheerio.load(data);
const typeTitle = ctx.params.type ? `[${$('.t .fn b').text()}]` : '';
let list = $('#ajaxtable > tbody:nth-child(2)');
list = $('.tr2', list).not('.tr2.tac').nextAll().slice(0, 25).get();
list = $('.tr3', list).not('.tr2.tac').nextAll().slice(0, 25).get();
const parseContent = (htmlString) => {
htmlString = iconv.decode(htmlString, 'gbk');