diff --git a/src/controllers/episodes/getByAniListId/index.ts b/src/controllers/episodes/getByAniListId/index.ts index b2c0efc..00e8b1b 100644 --- a/src/controllers/episodes/getByAniListId/index.ts +++ b/src/controllers/episodes/getByAniListId/index.ts @@ -66,15 +66,15 @@ export function fetchEpisodes( shouldRetry: boolean = false, ) { return fetchFromMultipleSources([ + () => + import("./aniwatch").then(({ getEpisodesFromAniwatch }) => + getEpisodesFromAniwatch(aniListId, shouldRetry), + ), () => getEpisodesFromAnify(env, aniListId), // () => // import("./consumet").then(({ getEpisodesFromConsumet }) => // getEpisodesFromConsumet(aniListId), // ), - () => - import("./aniwatch").then(({ getEpisodesFromAniwatch }) => - getEpisodesFromAniwatch(aniListId, shouldRetry), - ), ]); }