Update vidnest.ts

This commit is contained in:
Pas 2025-12-23 10:30:27 -07:00
parent 5fa3369422
commit 6a94f978c6

View file

@ -1,4 +1,3 @@
import { flags } from '@/entrypoint/utils/targets';
import { makeSourcerer } from '@/providers/base';
import { MovieScrapeContext, ShowScrapeContext } from '@/utils/context';
@ -31,9 +30,9 @@ async function scrape(ctx: MovieScrapeContext | ShowScrapeContext, type: 'movie'
const vidnestScraper = makeSourcerer({
id: 'vidnest',
name: 'Vidnest',
rank: 196,
rank: 115,
disabled: false,
flags: [flags.CORS_ALLOWED],
flags: [],
scrapeMovie: (ctx: MovieScrapeContext) => scrape(ctx, 'movie'),
scrapeShow: (ctx: ShowScrapeContext) => scrape(ctx, 'tv'),
});