Using origin for release URL in Radical scraper.

This commit is contained in:
DebaucheryLibrarian 2026-01-11 02:52:27 +01:00
parent e70ea13161
commit 7b1433edd3
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ function scrapeScene(data, channel, parameters) {
const release = {}; const release = {};
release.entryId = data.id; release.entryId = data.id;
release.url = `${channel.url}/${getVideoPath(data, parameters)}/${data.slug}`; release.url = `${new URL(channel.url).origin}/${getVideoPath(data, parameters)}/${data.slug}`;
release.title = data.title; release.title = data.title;
release.description = data.description; release.description = data.description;