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

@@ -335,7 +335,7 @@ function curateProfileEntry(profile) {
hip: profile.hip,
penis_length: profile.penisLength,
penis_girth: profile.penisGirth,
circumcised: profile.circumcised,
circumcised: profile.isCircumcised,
natural_boobs: profile.naturalBoobs,
height: profile.height,
weight: profile.weight,
@@ -465,7 +465,7 @@ async function curateProfile(profile, actor) {
curatedProfile.penisLength = Number(profile.penisLength) || profile.penisLength?.match?.(/\d+/)?.[0] || null;
curatedProfile.penisGirth = Number(profile.penisGirth) || profile.penisGirth?.match?.(/\d+/)?.[0] || null;
curatedProfile.circumcised = getBoolean(profile.circumcised);
curatedProfile.isCircumcised = getBoolean(profile.isCircumcised);
curatedProfile.naturalBoobs = getBoolean(profile.naturalBoobs);
curatedProfile.hasTattoos = getBoolean(profile.hasTattoos);
curatedProfile.hasPiercings = getBoolean(profile.hasPiercings);