Fixed URL prefixing in Kink scraper.

This commit is contained in:
DebaucheryLibrarian
2025-12-28 06:15:21 +01:00
parent 9ae81afecc
commit bcf5ca6024

View File

@@ -12,7 +12,7 @@ function scrapeAll(scenes, entity) {
const href = query.url('a[href*="/shoot"]');
release.url = `${networkUrl}${href}`;
release.url = unprint.prefixUrl(href, networkUrl);
release.shootId = href.split('/').slice(-1)[0];
release.entryId = release.shootId;