update ranks

This commit is contained in:
Pas 2025-02-02 18:40:59 -07:00
parent 2ab64b6d1b
commit 79be492355
5 changed files with 5 additions and 5 deletions

View file

@ -95,7 +95,7 @@ async function comboScraper(ctx: MovieScrapeContext): Promise<SourcererOutput> {
export const ee3Scraper = makeSourcerer({
id: 'ee3',
name: 'EE3',
rank: 131,
rank: 120,
flags: [flags.CORS_ALLOWED],
scrapeMovie: comboScraper,
});

View file

@ -131,7 +131,7 @@ const universalScraper = async (ctx: MovieScrapeContext | ShowScrapeContext): Pr
export const soaperTvScraper = makeSourcerer({
id: 'soapertv',
name: 'SoaperTV',
rank: 150,
rank: 130,
flags: [flags.CORS_ALLOWED],
scrapeMovie: universalScraper,
scrapeShow: universalScraper,

View file

@ -5,7 +5,7 @@ import { scrapeShow } from '@/providers/sources/vidsrc/scrape-show';
export const vidsrcScraper = makeSourcerer({
id: 'vidsrc',
name: 'VidSrc',
rank: 130,
rank: 116,
disabled: true,
flags: [],
scrapeMovie,

View file

@ -42,7 +42,7 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis
export const vidsrcsuScraper = makeSourcerer({
id: 'vidsrcsu',
name: 'vidsrc.su',
rank: 140,
rank: 150,
flags: [flags.CORS_ALLOWED],
scrapeMovie: comboScraper,
scrapeShow: comboScraper,

View file

@ -47,7 +47,7 @@ async function getEmbeds(id: string, servers: string, ctx: ScrapeContext): Promi
export const warezcdnScraper = makeSourcerer({
id: 'warezcdn',
name: 'WarezCDN',
rank: 120,
rank: 115,
flags: [],
scrapeMovie: async (ctx) => {
if (!ctx.media.imdbId) throw new NotFoundError('This source requires IMDB id.');