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:
@@ -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") {
|
||||||
|
|||||||
Reference in New Issue
Block a user