From 4f490dd8f1deedb743739689dc415cca6a7049db Mon Sep 17 00:00:00 2001 From: Ciarands <74070993+Ciarands@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:50:36 +0000 Subject: [PATCH 1/6] disable flixhq --- src/providers/sources/flixhq/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/sources/flixhq/index.ts b/src/providers/sources/flixhq/index.ts index 45064ac..b57c1c8 100644 --- a/src/providers/sources/flixhq/index.ts +++ b/src/providers/sources/flixhq/index.ts @@ -11,6 +11,7 @@ export const flixhqScraper = makeSourcerer({ name: 'FlixHQ', rank: 100, flags: [flags.CORS_ALLOWED], + disabled: true, async scrapeMovie(ctx) { const id = await getFlixhqId(ctx, ctx.media); if (!id) throw new NotFoundError('no search results match'); From d5d735d089fb2c7fcf0bbc40c9baccdcd2ec750c Mon Sep 17 00:00:00 2001 From: Ciarands <74070993+Ciarands@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:51:12 +0000 Subject: [PATCH 2/6] disable gomovies --- src/providers/sources/gomovies/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/sources/gomovies/index.ts b/src/providers/sources/gomovies/index.ts index 9bec3e0..495c548 100644 --- a/src/providers/sources/gomovies/index.ts +++ b/src/providers/sources/gomovies/index.ts @@ -14,6 +14,7 @@ export const goMoviesScraper = makeSourcerer({ name: 'GOmovies', rank: 110, flags: [flags.CORS_ALLOWED], + disabled: true, async scrapeShow(ctx) { const search = await ctx.proxiedFetcher(`/ajax/search`, { method: 'POST', From 3b29a685cccfeac4ca9eac229f748cfcaf38c168 Mon Sep 17 00:00:00 2001 From: Ciarands <74070993+Ciarands@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:53:53 +0000 Subject: [PATCH 3/6] disable goojara --- src/providers/sources/goojara/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/sources/goojara/index.ts b/src/providers/sources/goojara/index.ts index 402c0b6..df18df9 100644 --- a/src/providers/sources/goojara/index.ts +++ b/src/providers/sources/goojara/index.ts @@ -24,6 +24,7 @@ export const goojaraScraper = makeSourcerer({ name: 'Goojara', rank: 225, flags: [], + disabled: true, scrapeShow: universalScraper, scrapeMovie: universalScraper, }); From e6210b5d93378ef6c817fee5a6c53b3480587b07 Mon Sep 17 00:00:00 2001 From: Ciarands <74070993+Ciarands@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:56:13 +0000 Subject: [PATCH 4/6] disable nepu --- src/providers/sources/nepu/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/sources/nepu/index.ts b/src/providers/sources/nepu/index.ts index 576c789..5d98750 100644 --- a/src/providers/sources/nepu/index.ts +++ b/src/providers/sources/nepu/index.ts @@ -78,6 +78,7 @@ export const nepuScraper = makeSourcerer({ name: 'Nepu', rank: 111, flags: [], + disabled: true, scrapeMovie: universalScraper, scrapeShow: universalScraper, }); From 35721b553bed6b4664e3b765d4f432202042ba6c Mon Sep 17 00:00:00 2001 From: Ciarands <74070993+Ciarands@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:57:32 +0000 Subject: [PATCH 5/6] disable smashystream --- src/providers/sources/smashystream/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/sources/smashystream/index.ts b/src/providers/sources/smashystream/index.ts index 62102ea..972899d 100644 --- a/src/providers/sources/smashystream/index.ts +++ b/src/providers/sources/smashystream/index.ts @@ -59,6 +59,7 @@ export const smashyStreamScraper = makeSourcerer({ name: 'SmashyStream', rank: 70, flags: [flags.CORS_ALLOWED], + disabled: true, scrapeMovie: universalScraper, scrapeShow: universalScraper, }); From 5356d7336cf5abad56a1f6e4da24313241c998ee Mon Sep 17 00:00:00 2001 From: Ciarands <74070993+Ciarands@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:58:21 +0000 Subject: [PATCH 6/6] disable zoechip --- src/providers/sources/zoechip/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/providers/sources/zoechip/index.ts b/src/providers/sources/zoechip/index.ts index ee7f3a6..f6e7dba 100644 --- a/src/providers/sources/zoechip/index.ts +++ b/src/providers/sources/zoechip/index.ts @@ -8,6 +8,7 @@ export const zoechipScraper = makeSourcerer({ name: 'ZoeChip', rank: 200, flags: [flags.CORS_ALLOWED], + disabled: true, scrapeMovie, scrapeShow, });