Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian a8c525f4fc Hard-coded Pascal White as the male actor for Pascal's Sub Sluts. Added female gender to all Sub Sluts. 2020-09-16 02:38:59 +02:00
DebaucheryLibrarian 5ef160c98d 1.134.0 2020-09-16 01:47:14 +02:00
3 changed files with 10 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -23,8 +23,14 @@ function scrapeAll(months, channel, year) {
release.actors = [{
name: capitalize(query.q('a.video-pop-up', 'data-modelname'), { uncapitalize: true }),
gender: 'female',
url: query.url('a.video-pop-up', 'data-modellink', { origin: `${channel.url}/submissive` }),
}].filter(actor => /lockdown/i.test(actor.name));
}]
.filter(actor => !/lockdown/i.test(actor.name))
.concat({
name: 'Pascal White',
gender: 'male',
});
release.poster = query.img('img');
@ -55,6 +61,7 @@ function scrapeProfile({ query }) {
};
}, {});
profile.gender = 'female';
profile.nationality = bio.nationality;
profile.height = feetInchesToCm(bio.height);
profile.age = bio.age;