Integrated Kink VR into main Kink scraper, fixed profile method.

This commit is contained in:
DebaucheryLibrarian
2026-01-21 01:32:51 +01:00
parent bfb9581f12
commit 6a2772fac4
6 changed files with 18 additions and 196 deletions

View File

@@ -268,8 +268,8 @@ async function scrapeProfile({ query, el }, channel, options) {
if (bio.penis_length) profile.penisLength = Number(bio.penis_length.match(/(\d+)\s*cm/i)?.[1] || inchesToCm(bio.penis_length.match(/(\d+\.?\d+)\s*in/i)?.[1])) || null;
if (bio.penis_girth) profile.penisGirth = Number(bio.penis_girth.match(/(\d+)\s*cm/i)?.[1] || inchesToCm(bio.penis_girth.match(/(\d+\.?\d+)\s*in/i)?.[1])) || null;
if (bio.circumcised && /yes/i.test(bio.circumcised)) profile.circumcised = true;
if (bio.circumcised && /no/i.test(bio.circumcised)) profile.circumcised = false;
if (bio.circumcised && /yes/i.test(bio.circumcised)) profile.isCircumcised = true;
if (bio.circumcised && /no/i.test(bio.circumcised)) profile.isCircumcised = false;
if (bio.natural_breasts && /yes/i.test(bio.natural_breasts)) profile.naturalBoobs = true;
if (bio.natural_breasts && /no/i.test(bio.natural_breasts)) profile.naturalBoobs = false;