Added Trans Angels to MindGeek. Interpreting MindGeek 'other' gender as transsexual.
This commit is contained in:
@@ -128,13 +128,14 @@ function scrapeProfile(data, html) {
|
||||
const { qa, qd } = ex(html);
|
||||
|
||||
const profile = {
|
||||
gender: data.gender,
|
||||
description: data.bio,
|
||||
aliases: data.aliases,
|
||||
};
|
||||
|
||||
const [bust, waist, hip] = data.measurements.split('-');
|
||||
|
||||
profile.gender = data.gender === 'other' ? 'transsexual' : data.gender;
|
||||
|
||||
if (bust) profile.bust = bust.toUpperCase();
|
||||
if (waist) profile.waist = waist;
|
||||
if (hip) profile.hip = hip;
|
||||
|
||||
@@ -42,6 +42,7 @@ const boobpedia = require('./boobpedia');
|
||||
const freeones = require('./freeones');
|
||||
const freeonesLegacy = require('./freeones_legacy');
|
||||
const iconmale = require('./iconmale');
|
||||
const transangels = require('./transangels');
|
||||
const pornhub = require('./pornhub');
|
||||
|
||||
module.exports = {
|
||||
@@ -93,6 +94,7 @@ module.exports = {
|
||||
metrohd,
|
||||
milehighmedia,
|
||||
iconmale,
|
||||
transangels,
|
||||
men,
|
||||
xempire,
|
||||
blowpass,
|
||||
|
||||
11
src/scrapers/transangels.js
Normal file
11
src/scrapers/transangels.js
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
const { fetchProfile } = require('./mindgeek');
|
||||
|
||||
async function networkFetchProfile(actorName) {
|
||||
return fetchProfile(actorName, 'transangels');
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
fetchProfile: networkFetchProfile,
|
||||
};
|
||||
Reference in New Issue
Block a user