Compare commits

..

No commits in common. "58175dce21736ea5178fe80599fe7521dc4b8db4" and "bcd3c08faadfc2c40f483e979c4a90ed65d84005" have entirely different histories.

7 changed files with 7 additions and 17 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.227.5",
"version": "1.227.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.227.5",
"version": "1.227.4",
"license": "ISC",
"dependencies": {
"@casl/ability": "^5.2.2",

View File

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

View File

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -404,7 +404,7 @@ const tags = [
{
name: 'triple vaginal',
slug: 'tvp',
description: 'Getting your pussy fucked by *three* cocks at the same time.',
description: 'Getting fucked in the pussy by *three* cocks at the same time.',
group: 'penetration',
},
{
@ -1589,11 +1589,6 @@ const aliases = [
for: 'tvp',
secondary: true,
},
{
name: 'tvp',
for: 'tvp',
secondary: true,
},
{
name: 'double vag',
for: 'dvp',
@ -2055,10 +2050,6 @@ const aliases = [
name: 'tap',
for: 'tap',
},
{
name: 'triple vaginal penetration',
for: 'tvp',
},
{
name: 'tease',
for: 'teasing',

View File

@ -1054,7 +1054,6 @@ const tagMedia = [
['triple-penetration', 'lucky_bee_analvids', 'Lucky Bee', 'analvids'],
['triple-penetration', 'angela_white_julesjordan', 'Angela White in "Her Biggest Gangbang Ever"', 'julesjordan'],
['triple-penetration', 'ria_sunn_legalporno', 'Ria Sunn in SZ2082', 'analvids'],
['tvp', 'lucky_bee_legalporno', 'Lucky Bee', 'analvids'],
['tvp', 'september_reign_wefuckblackgirls', 'September Reign in "Second Appearance"', 'wefuckblackgirls'],
['trainbang', 'poster', 'Kali Roses in "Passing Me Around"', 'blacked'],
['trainbang', 'gina_gerson_assholefever', 'Gina Gerson in "Oppa Gangbang Style"', 'assholefever'],

View File

@ -39,11 +39,11 @@ function scrapeLatestClassic(scenes) {
const actors = query.contents('.update_models a');
release.actors = actors.length === 0
? query.content('.update_models')?.split(/,\s*/) // not all entries have models listed
? query.content('.update_models').split(/,\s*/)
: actors;
// native videothumb entry ID does not occur on scene page, date is not available on all sites
release.entryId = slugify([...(release.actors?.sort() || []), release.title]);
release.entryId = slugify([...release.actors.sort(), release.title]);
const photoCount = query.number('.update_thumb', { attribute: 'cnt' });
@ -59,7 +59,7 @@ function scrapeLatestClassic(scenes) {
function scrapeSceneBlock({ query }) {
const release = {};
release.title = query.content('.indScene h2, .indScene h1');
release.title = query.content('.indScene h2');
release.description = query.content('.description');
release.date = query.date('.sceneDateP span', 'MM/DD/YYYY');