move vidsrc higher

This commit is contained in:
Ivan Evans 2025-01-02 22:45:14 -07:00
parent d69bd0fb9d
commit 546cef05d1
5 changed files with 5 additions and 5 deletions

View file

@ -42,7 +42,7 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis
export const autoembedScraper = makeSourcerer({
id: 'autoembed',
name: 'Autoembed',
rank: 100,
rank: 90,
disabled: false,
flags: [flags.CORS_ALLOWED],
scrapeMovie: comboScraper,

View file

@ -25,7 +25,7 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis
export const bombtheirishScraper = makeSourcerer({
id: 'bombtheirish',
name: 'bombthe.irish',
rank: 110,
rank: 100,
disabled: true,
flags: [flags.CORS_ALLOWED],
scrapeMovie: comboScraper,

View file

@ -11,7 +11,7 @@ const insertUnitBase = 'https://api.insertunit.ws/';
export const insertunitScraper = makeSourcerer({
id: 'insertunit',
name: 'Insertunit',
rank: 120,
rank: 110,
disabled: true,
flags: [flags.CORS_ALLOWED],
async scrapeShow(ctx) {

View file

@ -73,7 +73,7 @@ const universalScraper = async (ctx: MovieScrapeContext | ShowScrapeContext) =>
export const ridooMoviesScraper = makeSourcerer({
id: 'ridomovies',
name: 'RidoMovies',
rank: 130,
rank: 120,
flags: [],
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: 90,
rank: 130,
disabled: true,
flags: [],
scrapeMovie,