Compare commits

..

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
fec70db20b 1.248.57 2026-02-09 03:21:28 +01:00
DebaucheryLibrarian
7bbb7cb43d Broadened Love Her Films profile selectors. 2026-02-09 03:21:26 +01:00
3 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@@ -125,12 +125,12 @@ async function fetchScene(sceneUrl, entity, _baseRelease, { parameters }) {
function scrapeProfile({ query }, url) {
const profile = { url };
const bio = Object.fromEntries(query.all('ul[class*="HeroModel_list"] li').map((bioEl) => [
const bio = Object.fromEntries(query.all('ul[class*=HeroModel][class*="__list"] li').map((bioEl) => [
slugify(unprint.query.content(bioEl, 'p:first-child'), '_'),
unprint.query.content(bioEl, 'p:last-child'),
]));
profile.description = query.content('p[class*="HeroModel_text"]');
profile.description = query.content('p[class*=HeroModel][class*="__text"]');
profile.birthPlace = bio.place_of_birth;
profile.dateOfBirth = unprint.extractDate(bio.date_of_birth, ['MMMM DD, YYYY', 'MM/DD/YYYY']);
@@ -163,7 +163,7 @@ function scrapeProfile({ query }, url) {
profile.piercings = profile.hasPiercings ? bio.piercings : null;
}
profile.avatar = query.sourceSet('picture[class*="modelImage"] img');
profile.avatar = query.sourceSet('picture[class*="__modelImage"] img');
return profile;
}