diff --git a/animepahe/animepahe.js b/animepahe/animepahe.js index 43784be..4ab355c 100644 --- a/animepahe/animepahe.js +++ b/animepahe/animepahe.js @@ -4,12 +4,11 @@ async function searchResults(keyword) { const ddosInterceptor = new DdosGuardInterceptor(); const responseText = await ddosInterceptor.fetchWithBypass(`https://animepahe.pw/api?m=search&q=${encodedKeyword}`); const dataText = await responseText.text(); - console.log(dataText); const data = JSON.parse(dataText); const transformedResults = data.data.map(result => { return { title: result.title, - image: result.poster, + image: `https://tmdbproxy22.simplepostrequest.workers.dev/images?url=${encodeURIComponent(result.poster)}&cache=1h`, href: `https://animepahe.pw/anime/${result.session}` }; });