From 43a505f19a91d0a0c446973e4b51c6623e357145 Mon Sep 17 00:00:00 2001 From: Tony Date: Sat, 21 Dec 2024 05:02:33 +0800 Subject: [PATCH] fix(hket): select main listing container (#17954) --- lib/routes/hket/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/hket/index.ts b/lib/routes/hket/index.ts index a44641bfb9f9bf..83d80983e5e7ff 100644 --- a/lib/routes/hket/index.ts +++ b/lib/routes/hket/index.ts @@ -133,7 +133,7 @@ async function handler(ctx) { const $ = cheerio.load(response); - const list = $('div.listing-title > a') + const list = $('.main-listing-container div.listing-title > a') .toArray() .map((item) => { item = $(item);