Compare commits

..

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 34e087098b 1.134.1 2020-09-16 02:39:09 +02:00
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
3 changed files with 10 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -23,8 +23,14 @@ function scrapeAll(months, channel, year) {
release.actors = [{ release.actors = [{
name: capitalize(query.q('a.video-pop-up', 'data-modelname'), { uncapitalize: true }), 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` }), 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'); release.poster = query.img('img');
@ -55,6 +61,7 @@ function scrapeProfile({ query }) {
}; };
}, {}); }, {});
profile.gender = 'female';
profile.nationality = bio.nationality; profile.nationality = bio.nationality;
profile.height = feetInchesToCm(bio.height); profile.height = feetInchesToCm(bio.height);
profile.age = bio.age; profile.age = bio.age;