From b2ac6c2cf7eed75a8a48e504bf72cb300d99eae5 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Thu, 14 Aug 2025 12:54:33 -0600 Subject: [PATCH] make rgshows ext only lew wants it that way --- src/providers/sources/rgshows.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/providers/sources/rgshows.ts b/src/providers/sources/rgshows.ts index e6ca7da..1d27998 100644 --- a/src/providers/sources/rgshows.ts +++ b/src/providers/sources/rgshows.ts @@ -1,7 +1,5 @@ -import { flags } from '@/entrypoint/utils/targets'; import { MovieScrapeContext, ShowScrapeContext } from '@/utils/context'; import { NotFoundError } from '@/utils/errors'; -import { createM3U8ProxyUrl } from '@/utils/proxy'; import { SourcererOutput, makeSourcerer } from '../base'; @@ -52,7 +50,7 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis type: 'hls', playlist: streamUrl, headers: m3u8Headers, - flags: [flags.CORS_ALLOWED], + flags: [], captions: [], }, ], @@ -63,7 +61,7 @@ export const rgshowsScraper = makeSourcerer({ id: 'rgshows', name: 'RGShows', rank: 173, - flags: [flags.CORS_ALLOWED], + flags: [], scrapeMovie: comboScraper, scrapeShow: comboScraper, });