diff --git a/src/providers/embeds/vidnest.ts b/src/providers/embeds/vidnest.ts index 38af5d4..ae23890 100644 --- a/src/providers/embeds/vidnest.ts +++ b/src/providers/embeds/vidnest.ts @@ -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(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(ctx.url); if (!serverStreams.streams) throw new NotFoundError('No streams found'); diff --git a/src/providers/sources/vidnest.ts b/src/providers/sources/vidnest.ts index ab5ae2b..e0be184 100644 --- a/src/providers/sources/vidnest.ts +++ b/src/providers/sources/vidnest.ts @@ -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'),