Merge pull request #122 from Ciarands/dev

Disable sources that no longer work
This commit is contained in:
Jorrin 2024-03-28 23:31:22 +01:00 committed by GitHub
commit acb9531cfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 0 deletions

View File

@ -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');

View File

@ -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',

View File

@ -24,6 +24,7 @@ export const goojaraScraper = makeSourcerer({
name: 'Goojara',
rank: 225,
flags: [],
disabled: true,
scrapeShow: universalScraper,
scrapeMovie: universalScraper,
});

View File

@ -78,6 +78,7 @@ export const nepuScraper = makeSourcerer({
name: 'Nepu',
rank: 111,
flags: [],
disabled: true,
scrapeMovie: universalScraper,
scrapeShow: universalScraper,
});

View File

@ -59,6 +59,7 @@ export const smashyStreamScraper = makeSourcerer({
name: 'SmashyStream',
rank: 70,
flags: [flags.CORS_ALLOWED],
disabled: true,
scrapeMovie: universalScraper,
scrapeShow: universalScraper,
});

View File

@ -8,6 +8,7 @@ export const zoechipScraper = makeSourcerer({
name: 'ZoeChip',
rank: 200,
flags: [flags.CORS_ALLOWED],
disabled: true,
scrapeMovie,
scrapeShow,
});