mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 13:33:25 +00:00
Merge pull request #122 from Ciarands/dev
Disable sources that no longer work
This commit is contained in:
@@ -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');
|
||||
|
@@ -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<string>(`/ajax/search`, {
|
||||
method: 'POST',
|
||||
|
@@ -24,6 +24,7 @@ export const goojaraScraper = makeSourcerer({
|
||||
name: 'Goojara',
|
||||
rank: 225,
|
||||
flags: [],
|
||||
disabled: true,
|
||||
scrapeShow: universalScraper,
|
||||
scrapeMovie: universalScraper,
|
||||
});
|
||||
|
@@ -78,6 +78,7 @@ export const nepuScraper = makeSourcerer({
|
||||
name: 'Nepu',
|
||||
rank: 111,
|
||||
flags: [],
|
||||
disabled: true,
|
||||
scrapeMovie: universalScraper,
|
||||
scrapeShow: universalScraper,
|
||||
});
|
||||
|
@@ -59,6 +59,7 @@ export const smashyStreamScraper = makeSourcerer({
|
||||
name: 'SmashyStream',
|
||||
rank: 70,
|
||||
flags: [flags.CORS_ALLOWED],
|
||||
disabled: true,
|
||||
scrapeMovie: universalScraper,
|
||||
scrapeShow: universalScraper,
|
||||
});
|
||||
|
@@ -8,6 +8,7 @@ export const zoechipScraper = makeSourcerer({
|
||||
name: 'ZoeChip',
|
||||
rank: 200,
|
||||
flags: [flags.CORS_ALLOWED],
|
||||
disabled: true,
|
||||
scrapeMovie,
|
||||
scrapeShow,
|
||||
});
|
||||
|
Reference in New Issue
Block a user