mirror of
https://github.com/p-stream/providers.git
synced 2026-01-11 20:10:33 +00:00
enable cuevana3 without ext
This commit is contained in:
parent
5b8749e18f
commit
812e037881
2 changed files with 3 additions and 2 deletions
|
|
@ -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/',
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue