From cddda574cc1c3cfa1d938f74f5e635a6903510d1 Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Thu, 2 Apr 2026 21:20:18 +0000 Subject: [PATCH] Update animepahe/animepahe.js --- animepahe/animepahe.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/animepahe/animepahe.js b/animepahe/animepahe.js index 3d202a8..06c0caa 100644 --- a/animepahe/animepahe.js +++ b/animepahe/animepahe.js @@ -2,7 +2,7 @@ async function searchResults(keyword) { try { const encodedKeyword = encodeURIComponent(keyword); const ddosInterceptor = new DdosGuardInterceptor(); - const responseText = await ddosInterceptor.fetchWithBypass(`https://animepahe.si/api?m=search&q=${encodedKeyword}`); + const responseText = await ddosInterceptor.fetchWithBypass(`https://animepahe.com/api?m=search&q=${encodedKeyword}`); const dataText = await responseText.text(); console.log(dataText); const data = JSON.parse(dataText); @@ -10,7 +10,7 @@ async function searchResults(keyword) { return { title: result.title, image: result.poster, - href: `https://animepahe.si/anime/${result.session}` + href: `https://animepahe.com/anime/${result.session}` }; }); @@ -60,14 +60,14 @@ async function extractEpisodes(url) { const ddosInterceptor = new DdosGuardInterceptor(); let page = 1; - const apiUrl1 = `https://animepahe.si/api?m=release&id=${id}&sort=episode_asc&page=${page}`; + const apiUrl1 = `https://animepahe.com/api?m=release&id=${id}&sort=episode_asc&page=${page}`; const response1 = await ddosInterceptor.fetchWithBypass(apiUrl1); const dataText1 = await response1.text(); const data1 = JSON.parse(dataText1); for (const item of data1.data) { results.push({ - href: `https://animepahe.si/play/${id}/${item.session}`, + href: `https://animepahe.com/play/${id}/${item.session}`, number: item.episode }); } @@ -81,7 +81,7 @@ async function extractEpisodes(url) { let retries = 0; while (!pageData && retries < 3) { try { - const apiUrl = `https://animepahe.si/api?m=release&id=${id}&sort=episode_asc&page=${pageNum}`; + const apiUrl = `https://animepahe.com/api?m=release&id=${id}&sort=episode_asc&page=${pageNum}`; const response = await ddosInterceptor.fetchWithBypass(apiUrl); const dataText = await response.text(); pageData = JSON.parse(dataText); @@ -101,7 +101,7 @@ async function extractEpisodes(url) { if (pageData && pageData.data) { for (const item of pageData.data) { results.push({ - href: `https://animepahe.si/play/${id}/${item.session}`, + href: `https://animepahe.com/play/${id}/${item.session}`, number: item.episode }); }