From 78e9088ee58772be8330d15d51b8aa2cb6981b22 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Sun, 22 Feb 2026 03:17:04 +0100 Subject: [PATCH] Fixed WankzVR profile scraper selecting height in feet/inches when requested from North American IP. --- src/scrapers/wankzvr.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scrapers/wankzvr.js b/src/scrapers/wankzvr.js index 53d69f0a..1149e53d 100755 --- a/src/scrapers/wankzvr.js +++ b/src/scrapers/wankzvr.js @@ -171,7 +171,8 @@ async function scrapeProfile({ query }, url, entity, options) { profile.birthPlace = bio.birthplace; - profile.height = parseInt(bio.height, 10); + // height shown in imperial with cm between brackets when requested from North American IP, but only in cm for European IPs + profile.height = unprint.extractNumber(bio.height, { match: /(\d+)cm/, matchIndex: 1 }); profile.measurements = bio.measurements; profile.avatar = query.sourceSet('.person__avatar img').map((src) => ({