Compare commits

..

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian d2b4ceb166 1.244.90 2025-12-28 06:15:23 +01:00
DebaucheryLibrarian bcf5ca6024 Fixed URL prefixing in Kink scraper. 2025-12-28 06:15:21 +01:00
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.244.89",
"version": "1.244.90",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.244.89",
"version": "1.244.90",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.244.89",
"version": "1.244.90",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

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;