fix: filter out animepahe in anify

issue with animepahe is can't skip ahead (most likely because of the missing header that's not being used)
This commit is contained in:
2025-01-15 02:47:41 -05:00
parent c7d8f3ffa4
commit 51bfad78ce

View File

@@ -61,7 +61,7 @@ export async function getEpisodesFromAnify(
}; };
const filteredEpisodesData = response const filteredEpisodesData = response
.filter(({ providerId }) => { .filter(({ providerId }) => {
if (providerId === "9anime") { if (providerId === "9anime" || providerId === "animepahe") {
return false; return false;
} }
if (aniListId == 166873 && providerId === "zoro") { if (aniListId == 166873 && providerId === "zoro") {