Fixed Kink Men Test Shoots slug.

This commit is contained in:
DebaucheryLibrarian
2023-01-01 02:03:18 +01:00
parent 5784178716
commit eb759a0dec
4 changed files with 13 additions and 10 deletions

View File

@@ -111,9 +111,9 @@ async function fetchActorReleases(actorUrl, page = 1, accReleases = []) {
async function scrapeProfile({ query }, actorUrl, include) {
const profile = {};
profile.description = query.q('.bio #expand-text', true);
profile.description = query.content('.bio #expand-text');
const tags = query.all('.bio-tags a', true);
const tags = query.contents('.bio-tags a');
if (tags.includes('brunette') || tags.includes('brunet')) profile.hairColor = 'brown';
if (tags.includes('blonde') || tags.includes('blond')) profile.hairColor = 'blonde';