mirror of
https://github.com/sussy-code/providers.git
synced 2026-03-11 17:55:37 +00:00
Disable Broken Sources
Catflix returns 404 HDRezka returns incorrect video M4UFree returns encoded url i think
This commit is contained in:
parent
d2c3b11bb6
commit
fdb79ed476
9 changed files with 9 additions and 1 deletions
|
|
@ -68,6 +68,7 @@ export const catflixScraper = makeSourcerer({
|
|||
id: 'catflix',
|
||||
name: 'Catflix',
|
||||
rank: 122,
|
||||
disabled: true,
|
||||
flags: [],
|
||||
scrapeMovie: comboScraper,
|
||||
scrapeShow: comboScraper,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@ export const nitesScraper = makeSourcerer({
|
|||
id: 'nites',
|
||||
name: 'Nites',
|
||||
rank: 90,
|
||||
disabled: true,
|
||||
flags: [],
|
||||
scrapeMovie: comboScraper,
|
||||
scrapeShow: comboScraper,
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ export const nsbxScraper = makeSourcerer({
|
|||
name: 'NSBX',
|
||||
rank: 129,
|
||||
flags: [flags.CORS_ALLOWED],
|
||||
disabled: false,
|
||||
disabled: true,
|
||||
scrapeMovie: comboScraper,
|
||||
scrapeShow: comboScraper,
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
|
|
@ -75,6 +75,7 @@ export const ridooMoviesScraper = makeSourcerer({
|
|||
id: 'ridomovies',
|
||||
name: 'RidoMovies',
|
||||
rank: 100,
|
||||
disabled: true,
|
||||
flags: [flags.CORS_ALLOWED],
|
||||
scrapeMovie: universalScraper,
|
||||
scrapeShow: universalScraper,
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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.');
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ export const whvxScraper = makeSourcerer({
|
|||
id: 'whvx',
|
||||
name: 'VidBinge',
|
||||
rank: 128,
|
||||
disabled: true,
|
||||
flags: [flags.CORS_ALLOWED],
|
||||
scrapeMovie: comboScraper,
|
||||
scrapeShow: comboScraper,
|
||||
|
|
|
|||
Loading…
Reference in a new issue