Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian a6f16b9f62 1.245.23 2026-01-12 01:38:18 +01:00
DebaucheryLibrarian 82f8b135bd Only using ID part of URL as entry ID for Cherry Pimps to ensure backward compatability. 2026-01-12 01:38:17 +01:00
3 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@ -13,7 +13,7 @@ function scrapeAll(scenes) {
const { pathname } = new URL(url);
release.url = url;
release.entryId = pathname.match(/\/trailers\/(.*).html/)[1];
release.entryId = pathname.match(/\/trailers\/(\d+).*.html/)[1];
release.title = query.content('.item-title a');
@ -50,7 +50,7 @@ function scrapeScene({ query }, url, _channel, baseRelease) {
const release = { url };
const { pathname } = new URL(url);
release.entryId = pathname.match(/\/trailers\/(.*).html/)[1];
release.entryId = pathname.match(/\/trailers\/(\d+).*.html/)[1];
release.title = query.content('.item-title h1');
release.description = query.content('.update-info-block p');