mirror of
https://github.com/p-stream/providers.git
synced 2026-03-11 17:55:36 +00:00
ughhh vidjoy blocked netlify and cloudflare proxies
This commit is contained in:
parent
b322268fc2
commit
eb66592b8c
1 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ async function comboScraper(ctx: MovieScrapeContext): Promise<SourcererOutput> {
|
||||||
id: 'primary',
|
id: 'primary',
|
||||||
type: 'hls',
|
type: 'hls',
|
||||||
playlist: `${baseUrl}/movies/${ctx.media.tmdbId}/index.m3u8`,
|
playlist: `${baseUrl}/movies/${ctx.media.tmdbId}/index.m3u8`,
|
||||||
flags: [flags.CORS_ALLOWED],
|
flags: [flags.CORS_ALLOWED, flags.PROXY_BLOCKED],
|
||||||
captions: [],
|
captions: [],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
@ -42,6 +42,6 @@ export const vidjoyScraper = makeSourcerer({
|
||||||
id: 'vidjoy',
|
id: 'vidjoy',
|
||||||
name: 'Vidjoy',
|
name: 'Vidjoy',
|
||||||
rank: 185,
|
rank: 185,
|
||||||
flags: [flags.CORS_ALLOWED],
|
flags: [flags.CORS_ALLOWED, flags.PROXY_BLOCKED],
|
||||||
scrapeMovie: comboScraper,
|
scrapeMovie: comboScraper,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue