Compare commits

..

No commits in common. "a6f16b9f6221adc12a6ccd113bf667aa21f7ae82" and "5ac0d79b99068eb37d9464457ab5a59c1f6aaf3f" have entirely different histories.

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.23",
"version": "1.245.22",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.245.23",
"version": "1.245.22",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.245.23",
"version": "1.245.22",
"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\/(\d+).*.html/)[1];
release.entryId = pathname.match(/\/trailers\/(.*).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\/(\d+).*.html/)[1];
release.entryId = pathname.match(/\/trailers\/(.*).html/)[1];
release.title = query.content('.item-title h1');
release.description = query.content('.update-info-block p');