Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
0092aab579 1.248.67 2026-02-22 03:17:06 +01:00
DebaucheryLibrarian
78e9088ee5 Fixed WankzVR profile scraper selecting height in feet/inches when requested from North American IP. 2026-02-22 03:17:04 +01:00
3 changed files with 5 additions and 4 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.248.66",
"version": "1.248.67",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.248.66",
"version": "1.248.67",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.248.66",
"version": "1.248.67",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@@ -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) => ({