From cbb39e9b0b96b9e4892b0e065fe303fc721321e1 Mon Sep 17 00:00:00 2001 From: rev9dev-netizen Date: Thu, 20 Nov 2025 22:53:44 +0530 Subject: [PATCH] Update rgshows source URLs and headers to .ru domain Changed all references from rgshows.me to rgshows.ru in baseUrl and HTTP headers to reflect the new domain. This ensures requests are sent to the correct API and comply with updated referer and origin requirements. --- src/providers/sources/rgshows.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/providers/sources/rgshows.ts b/src/providers/sources/rgshows.ts index 1d27998..0e4c3c5 100644 --- a/src/providers/sources/rgshows.ts +++ b/src/providers/sources/rgshows.ts @@ -3,11 +3,11 @@ import { NotFoundError } from '@/utils/errors'; import { SourcererOutput, makeSourcerer } from '../base'; -const baseUrl = 'api.rgshows.me'; +const baseUrl = 'api.rgshows.ru'; const headers = { - referer: 'https://rgshows.me/', - origin: 'https://rgshows.me', + referer: 'https://www.rgshows.ru/', + origin: 'https://www.rgshows.ru', host: baseUrl, 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36', @@ -36,8 +36,8 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis const m3u8Headers = { ...headers, host: streamHost, - origin: 'https://www.rgshows.me', - referer: 'https://www.rgshows.me/', + origin: 'https://www.rgshows.ru', + referer: 'https://www.rgshows.ru/', }; ctx.progress(100);