Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 901acf1390 1.199.5 2021-09-14 00:42:59 +02:00
DebaucheryLibrarian a316da3083 Retrieving Spizoo trailers. 2021-09-14 00:42:51 +02:00
10 changed files with 6 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

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