From e22faebe94ddd7c5f2d31f2ef59aac6292ac466f Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Sat, 27 Dec 2025 15:33:51 +0000 Subject: [PATCH] Update kimcartoon/kimcartoon.js --- kimcartoon/kimcartoon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kimcartoon/kimcartoon.js b/kimcartoon/kimcartoon.js index 28dbfba..ed723b1 100644 --- a/kimcartoon/kimcartoon.js +++ b/kimcartoon/kimcartoon.js @@ -2,7 +2,7 @@ async function searchResults(keyword) { const searchUrl = `https://kimcartoon.com.co/?s=${encodeURIComponent(keyword)}`; try { const response = await fetchv2(searchUrl); - const html = await response;text(); + const html = await response.text(); const results = []; const articleRegex = /]*class="bs styletwo"[\s\S]*?<\/article>/g; const items = html.match(articleRegex) || [];