enable cuevana3 without ext

This commit is contained in:
Pas 2025-05-08 19:12:55 -06:00
parent 5b8749e18f
commit 812e037881
2 changed files with 3 additions and 2 deletions

View file

@ -48,7 +48,7 @@ function embed(provider: { id: string; name: string; rank: number }) {
id: 'primary',
type: 'hls',
playlist: videoUrl,
flags: [],
flags: [flags.CORS_ALLOWED],
captions: [],
headers: {
Referer: 'https://streamwish.to/',

View file

@ -1,5 +1,6 @@
import { load } from 'cheerio';
import { flags } from '@/entrypoint/utils/targets';
import { SourcererOutput, makeSourcerer } from '@/providers/base';
import { MovieScrapeContext, ShowScrapeContext } from '@/utils/context';
import { NotFoundError } from '@/utils/errors';
@ -228,7 +229,7 @@ export const cuevana3Scraper = makeSourcerer({
name: 'Cuevana3',
rank: 80,
disabled: false,
flags: [],
flags: [flags.CORS_ALLOWED],
scrapeMovie: comboScraper,
scrapeShow: comboScraper,
});