From eb02d779fbe951e52977daa65d721b18436a8bcc Mon Sep 17 00:00:00 2001 From: aka paul <80717571+50n50@users.noreply.github.com> Date: Thu, 4 Jun 2026 20:47:39 +0200 Subject: [PATCH] Fix images --- animepahe/animepahe.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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}` }; });