Integrated Kink VR into main Kink scraper, fixed profile method.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user