From 2c6318d1766b5d09a09c21222757972f8bb2cc85 Mon Sep 17 00:00:00 2001 From: ToffeeNeko <53738915+ToffeeNeko@users.noreply.github.com> Date: Sun, 23 Oct 2022 00:37:11 -0500 Subject: [PATCH] fix(route): kemono.party parse failure (#11112) (#11136) --- lib/v2/kemono/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/v2/kemono/index.js b/lib/v2/kemono/index.js index 6650c221f..b8268ffea 100644 --- a/lib/v2/kemono/index.js +++ b/lib/v2/kemono/index.js @@ -55,8 +55,8 @@ module.exports = async (ctx) => { title = $('title').text(); items = await Promise.all( - $('.post-card') - .find('.fancy-link') + $('.card-list__items') + .find('a') .slice(0, ctx.query.limit ? parseInt(ctx.query.limit) : 25) .toArray() .map((item) => {