Disable Broken Sources

Catflix returns 404
HDRezka returns incorrect video
M4UFree returns encoded url i think
This commit is contained in:
Ivan Evans 2024-12-06 23:37:29 -07:00
parent d2c3b11bb6
commit fdb79ed476
9 changed files with 9 additions and 1 deletions

View file

@ -68,6 +68,7 @@ export const catflixScraper = makeSourcerer({
id: 'catflix',
name: 'Catflix',
rank: 122,
disabled: true,
flags: [],
scrapeMovie: comboScraper,
scrapeShow: comboScraper,

View file

@ -121,6 +121,7 @@ export const hdRezkaScraper = makeSourcerer({
id: 'hdrezka',
name: 'HDRezka',
rank: 120,
disabled: true,
flags: [flags.CORS_ALLOWED, flags.IP_LOCKED],
scrapeShow: universalScraper,
scrapeMovie: universalScraper,

View file

@ -73,6 +73,7 @@ export const nitesScraper = makeSourcerer({
id: 'nites',
name: 'Nites',
rank: 90,
disabled: true,
flags: [],
scrapeMovie: comboScraper,
scrapeShow: comboScraper,

View file

@ -38,7 +38,7 @@ export const nsbxScraper = makeSourcerer({
name: 'NSBX',
rank: 129,
flags: [flags.CORS_ALLOWED],
disabled: false,
disabled: true,
scrapeMovie: comboScraper,
scrapeShow: comboScraper,
});

View file

@ -81,6 +81,7 @@ export const primewireScraper = makeSourcerer({
id: 'primewire',
name: 'Primewire',
rank: 1,
disabled: true,
flags: [flags.CORS_ALLOWED],
async scrapeMovie(ctx) {
if (!ctx.media.imdbId) throw new Error('No imdbId provided');

View file

@ -75,6 +75,7 @@ export const ridooMoviesScraper = makeSourcerer({
id: 'ridomovies',
name: 'RidoMovies',
rank: 100,
disabled: true,
flags: [flags.CORS_ALLOWED],
scrapeMovie: universalScraper,
scrapeShow: universalScraper,

View file

@ -11,6 +11,7 @@ export const tugaflixScraper = makeSourcerer({
id: 'tugaflix',
name: 'Tugaflix',
rank: 73,
disabled: true,
flags: [flags.IP_LOCKED],
scrapeMovie: async (ctx) => {
const searchResults = parseSearch(

View file

@ -15,6 +15,7 @@ export const warezcdnScraper = makeSourcerer({
id: 'warezcdn',
name: 'WarezCDN',
rank: 81,
disabled: true,
flags: [flags.CORS_ALLOWED],
scrapeMovie: async (ctx) => {
if (!ctx.media.imdbId) throw new NotFoundError('This source requires IMDB id.');

View file

@ -38,6 +38,7 @@ export const whvxScraper = makeSourcerer({
id: 'whvx',
name: 'VidBinge',
rank: 128,
disabled: true,
flags: [flags.CORS_ALLOWED],
scrapeMovie: comboScraper,
scrapeShow: comboScraper,