mirror of
https://github.com/p-stream/providers.git
synced 2026-01-11 20:10:33 +00:00
disable vidnext
"encryption required"
This commit is contained in:
parent
fe0866089b
commit
f4e907ec55
2 changed files with 3 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ export const vidnestHollymoviehdEmbed = makeEmbed({
|
|||
id: 'vidnest-hollymoviehd',
|
||||
name: 'HollyMovie',
|
||||
rank: 104,
|
||||
disabled: true,
|
||||
async scrape(ctx) {
|
||||
const serverStreams = await ctx.proxiedFetcher<any>(ctx.url);
|
||||
if (!serverStreams.success || !serverStreams.sources) throw new NotFoundError('No streams found');
|
||||
|
|
@ -35,6 +36,7 @@ export const vidnestAllmoviesEmbed = makeEmbed({
|
|||
id: 'vidnest-allmovies',
|
||||
name: 'AllMovies (Hindi)',
|
||||
rank: 103,
|
||||
disabled: true,
|
||||
async scrape(ctx) {
|
||||
const serverStreams = await ctx.proxiedFetcher<any>(ctx.url);
|
||||
if (!serverStreams.streams) throw new NotFoundError('No streams found');
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ const vidnestScraper = makeSourcerer({
|
|||
id: 'vidnest',
|
||||
name: 'Vidnest',
|
||||
rank: 130,
|
||||
disabled: true,
|
||||
flags: [flags.CORS_ALLOWED],
|
||||
scrapeMovie: (ctx: MovieScrapeContext) => scrape(ctx, 'movie'),
|
||||
scrapeShow: (ctx: ShowScrapeContext) => scrape(ctx, 'tv'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue