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) || [];