Add Babepedia Scrapper seeding info
This commit is contained in:
parent
e8d707d259
commit
6d03d15618
|
@ -112,6 +112,12 @@ const networks = [
|
||||||
url: 'https://www.babes.com',
|
url: 'https://www.babes.com',
|
||||||
parent: 'mindgeek',
|
parent: 'mindgeek',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
slug: 'babepedia',
|
||||||
|
name: 'Babepedia',
|
||||||
|
url: 'https://www.babepedia.com',
|
||||||
|
type: 'info',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
slug: 'badoink',
|
slug: 'badoink',
|
||||||
name: 'BaDoink',
|
name: 'BaDoink',
|
||||||
|
|
|
@ -134,13 +134,14 @@ function scrapeSearch({ query, el }, actorName, entity, include) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function fetchProfile(actor, entity, include) {
|
async function fetchProfile(actor, entity, include) {
|
||||||
const actorName = actor.name.replace('\'', '');
|
const actorName = actor.name;
|
||||||
|
const searchName = actorName.replace('\'', '');
|
||||||
|
|
||||||
if (actor?.gender === 'male') {
|
if (actor?.gender === 'male') {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
let url = `${entity.url}/search/${actorName}`;
|
let url = `${entity.url}/search/${searchName}`;
|
||||||
let res = await qu.get(url);
|
let res = await qu.get(url);
|
||||||
|
|
||||||
// Check if search redirects
|
// Check if search redirects
|
||||||
|
|
Loading…
Reference in New Issue