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:
parent
5ef160c98d
commit
a8c525f4fc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue