Compare commits

..

No commits in common. "4012669a3ea88a5db9e75e0f8ea07e09795a9735" and "54ef0ff8078734cad91c181788caf6ba68d9718f" have entirely different histories.

8 changed files with 3 additions and 25 deletions

2
package-lock.json generated
View File

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

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -1717,14 +1717,6 @@ function getSites(networksMap) {
parameters: JSON.stringify({ native: true }),
network_id: networksMap.mindgeek,
},
{
slug: 'transangels',
name: 'TransAngels',
url: 'https://www.transangels.com',
description: '',
parameters: JSON.stringify({ native: true }),
network_id: networksMap.mindgeek,
},
// MIKE ADRIANO
{
slug: 'trueanal',

View File

@ -128,14 +128,13 @@ 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;

View File

@ -42,7 +42,6 @@ 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 = {
@ -94,7 +93,6 @@ module.exports = {
metrohd,
milehighmedia,
iconmale,
transangels,
men,
xempire,
blowpass,

View File

@ -1,11 +0,0 @@
'use strict';
const { fetchProfile } = require('./mindgeek');
async function networkFetchProfile(actorName) {
return fetchProfile(actorName, 'transangels');
}
module.exports = {
fetchProfile: networkFetchProfile,
};