From 98230470f14ed6fa4fcb3797e484cfb6607a93f6 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Tue, 2 Jan 2024 20:12:28 +0100 Subject: [PATCH 1/3] remove febbox HLS, it doesnt work --- src/entrypoint/providers.ts | 4 ++-- src/providers/embeds/febbox/hls.ts | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/entrypoint/providers.ts b/src/entrypoint/providers.ts index b306417..e456eb0 100644 --- a/src/entrypoint/providers.ts +++ b/src/entrypoint/providers.ts @@ -2,9 +2,9 @@ import { gatherAllEmbeds, gatherAllSources } from '@/providers/all'; import { Embed, Sourcerer } from '@/providers/base'; export function getBuiltinSources(): Sourcerer[] { - return gatherAllSources(); + return gatherAllSources().filter((v) => !v.disabled); } export function getBuiltinEmbeds(): Embed[] { - return gatherAllEmbeds(); + return gatherAllEmbeds().filter((v) => !v.disabled); } diff --git a/src/providers/embeds/febbox/hls.ts b/src/providers/embeds/febbox/hls.ts index 2a3a03f..792c112 100644 --- a/src/providers/embeds/febbox/hls.ts +++ b/src/providers/embeds/febbox/hls.ts @@ -15,6 +15,7 @@ export const febboxHlsScraper = makeEmbed({ id: 'febbox-hls', name: 'Febbox (HLS)', rank: 160, + disabled: true, async scrape(ctx) { const { type, id, season, episode } = parseInputUrl(ctx.url); const sharelinkResult = await ctx.proxiedFetcher<{ From 10eb0cc8f6e319366b56ebe63930ecfb24040def Mon Sep 17 00:00:00 2001 From: mrjvs Date: Tue, 2 Jan 2024 20:21:55 +0100 Subject: [PATCH 2/3] Update codeowner file --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d0f0ca6..0ccc218 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,3 @@ -* @movie-web/core +* @movie-web/project-leads .github @binaryoverload From 7f4e412b9d28493abee46d737a040df505a172c3 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Tue, 2 Jan 2024 20:22:06 +0100 Subject: [PATCH 3/3] Remove binary --- .github/CODEOWNERS | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0ccc218..7458772 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1 @@ * @movie-web/project-leads - -.github @binaryoverload