From bb7d3ad1f6759fb377be8daced96f2b8f8671edd Mon Sep 17 00:00:00 2001 From: Aiaid Date: Sat, 13 Feb 2021 10:20:00 -0800 Subject: [PATCH] Fix: t66y DIYgod/RSSHub#6861 (#6908) --- lib/routes/t66y/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/t66y/index.js b/lib/routes/t66y/index.js index 0111d9b2d..fac611a5d 100644 --- a/lib/routes/t66y/index.js +++ b/lib/routes/t66y/index.js @@ -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');