Hard-coded Pascal White as the male actor for Pascal's Sub Sluts. Added female gender to all Sub Sluts.

This commit is contained in:
DebaucheryLibrarian 2020-09-16 02:38:59 +02:00
parent 5ef160c98d
commit a8c525f4fc
1 changed files with 8 additions and 1 deletions

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;