From 51bfad78ce8e6bfdaaf03f192588f29c0a345be1 Mon Sep 17 00:00:00 2001 From: Rushil Perera Date: Wed, 15 Jan 2025 02:47:41 -0500 Subject: [PATCH] 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) --- src/controllers/episodes/getByAniListId/anify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/episodes/getByAniListId/anify.ts b/src/controllers/episodes/getByAniListId/anify.ts index 72740ae..3449d0a 100644 --- a/src/controllers/episodes/getByAniListId/anify.ts +++ b/src/controllers/episodes/getByAniListId/anify.ts @@ -61,7 +61,7 @@ export async function getEpisodesFromAnify( }; const filteredEpisodesData = response .filter(({ providerId }) => { - if (providerId === "9anime") { + if (providerId === "9anime" || providerId === "animepahe") { return false; } if (aniListId == 166873 && providerId === "zoro") {