Fixed ExploitedX not matching some age fields.

This commit is contained in:
DebaucheryLibrarian
2026-02-09 02:33:11 +01:00
parent 5ca7537e24
commit fe3fcd0741
3 changed files with 6 additions and 4 deletions

View File

@@ -81,7 +81,7 @@ function scrapeProfile({ query }, _entity) {
const bio = Object.fromEntries(keys.map((key, index) => [slugify(key, '_'), values[index]]));
profile.age = Number(bio.age) || null;
profile.age = unprint.extractNumber(bio.age);
profile.height = convert(bio.height, 'cm');
profile.measurements = bio.measurements;