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

@@ -207,7 +207,7 @@ const actors = [
{ entity: 'amateurallure', name: 'Ava Amira', fields: ['avatar', 'description'] },
{ entity: 'swallowsalon', name: 'Abella Danger', fields: ['avatar'] },
// exploitedx
{ entity: 'exploitedx', name: 'Amber Moore', url: 'https://exploitedcollegegirls.com/models/AmberMoore.html', fields: ['avatar', 'description', 'age', 'height', 'measurements'] },
{ entity: 'exploitedx', name: 'Amber Moore', url: 'https://exploitedcollegegirls.com/models/Amber-Moore.html', fields: ['avatar', 'description', 'age', 'height', 'measurements'] },
{ entity: 'exploitedx', name: 'Amber Moore', url: 'https://bbcsurprise.com/models/AmberMoore.html', fields: ['avatar', 'age'] },
{ entity: 'exploitedx', name: 'Megan Marx', url: 'https://excogigirls.com/models/megan-marx.html', fields: ['avatar', 'description', 'age', 'height', 'measurements'] },
{ entity: 'exploitedx', name: 'Sophie Hunt', url: 'https://www.backroomcastingcouch.com/models/Sophie-Hunt.html', fields: ['avatar', 'age'] },
@@ -375,7 +375,7 @@ async function init() {
validators[field]
? await validators[field](profile[field])
: typeof profile[field] !== 'undefined',
`broken field ${field}, got ${profile[field]}`,
`broken field ${field}, got ${profile[field]} for ${actor.name}`,
);
}));
})));