fix ranks

This commit is contained in:
Jorrin 2023-12-27 20:42:22 +01:00
parent 30e6067a3f
commit c44d13f0bd
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ const fileRegex = /file:"(.*?)"/g;
export const fileMoonScraper = makeEmbed({
id: 'filemoon',
name: 'Filemoon',
rank: 301,
rank: 400,
scrape: async (ctx) => {
const embedRes = await ctx.fetcher<string>(ctx.url);
const evalCode = evalCodeRegex.exec(embedRes);

View File

@ -7,7 +7,7 @@ import { SubtitleResult, VidplaySourceResponse } from './types';
export const vidplayScraper = makeEmbed({
id: 'vidplay',
name: 'VidPlay',
rank: 300,
rank: 401,
scrape: async (ctx) => {
const fileUrl = await getFileUrl(ctx);
const fileUrlRes = await ctx.proxiedFetcher<VidplaySourceResponse>(fileUrl, {

View File

@ -69,5 +69,5 @@ export const vidSrcToScraper = makeSourcerer({
scrapeMovie: universalScraper,
scrapeShow: universalScraper,
flags: [],
rank: 300,
rank: 400,
});