Update vidsrcsu.ts

This commit is contained in:
Pas 2025-03-17 15:24:24 -07:00
parent af3aa03b75
commit e00e9e1b8a

View file

@ -61,13 +61,13 @@ async function comboScraper(ctx: ShowScrapeContext | MovieScrapeContext): Promis
const jsonData = JSON.parse(decodedData);
const originalUrl = jsonData.u;
const origin = jsonData.o || '';
// const origin = jsonData.o || '';
const referer = jsonData.r || '';
const encodedUrl = encodeURIComponent(originalUrl);
const encodedHeaders = encodeURIComponent(
JSON.stringify({
origin,
// origin,
referer,
}),
);