From 65638095c4d03b06794ee2dc03e7a5ded7ddbb1d Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Sat, 25 Oct 2025 15:36:13 -0600 Subject: [PATCH] Update cuevana3.ts --- src/providers/sources/cuevana3.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/sources/cuevana3.ts b/src/providers/sources/cuevana3.ts index 9193eae..87adbb1 100644 --- a/src/providers/sources/cuevana3.ts +++ b/src/providers/sources/cuevana3.ts @@ -115,7 +115,7 @@ async function fetchTitleSubstitutes(): Promise> { async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promise { const mediaType = ctx.media.type; const tmdbId = ctx.media.tmdbId; - const apiKey = '7604525319adb2db8e7e841cb98e9217'; + const apiKey = 'a500049f3e06109fe3e8289b06cf5685'; if (!tmdbId) { throw new NotFoundError('TMDB ID is required to fetch the title in Spanish'); @@ -228,7 +228,7 @@ export const cuevana3Scraper = makeSourcerer({ id: 'cuevana3', name: 'Cuevana3', rank: 80, - disabled: true, + disabled: false, flags: [flags.CORS_ALLOWED], scrapeMovie: comboScraper, scrapeShow: comboScraper,