Compare commits

..

No commits in common. "901acf1390e82d19b051d8e7d11897b6177cb200" and "0b46e27497d1380ef55781f03ce3d09c2de3909d" have entirely different histories.

10 changed files with 3 additions and 6 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.199.5",
"version": "1.199.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

View File

@ -750,7 +750,6 @@ const tagMedia = [
['double-dildo', 1, 'Indigo Vanity and Kendall Woods in "My White Stepdad: Part 3"', 'digitalplayground'],
['double-dildo', 9, 'Anissa Kate and Zafira in "Lesbians Play With Double Dong All Day Long"', 'pornworld'],
['double-dildo', 2, 'Jasmine Webb and Aria Alexander in "Homeless Horny"', 'digitalplayground'],
['double-dildo', 'alina_ali_jessie_saint_nicole_kitt_zebragirls', 'Alina Ali, Jessie Saint and Nicole Kitt', 'zebragirls'],
['double-dildo', 7, 'Gina Gerson and Anastasia Brokelyn in "One Double Sided Dildo, Two Cuties"', 'pornworld'],
['double-dildo', 0, 'Kali Roses in "Double Dildo Party"'],
['double-dildo', 4, 'Claudia Macc and Victoria Pure', 'eurogirlsongirls'],

View File

@ -44,7 +44,7 @@ function scrapeScene({ query }, url) {
release.tags = query.cnts('.categories-holder a');
const poster = query.img('#video-holder .update_thumb') || query.poster('#trailervideo');
const poster = query.img('#video-holder .update_thumb');
const posterPathname = poster && new URL(poster)?.pathname;
release.poster = [poster, poster?.replace(/imgw=\w+/, 'imgw=680')];
@ -56,8 +56,6 @@ function scrapeScene({ query }, url) {
src,
]);
release.trailer = query.video('#trailervideo source');
return release;
}