Removed stray slice from Gamma scraper.

This commit is contained in:
DebaucheryLibrarian
2026-01-11 16:58:33 +01:00
parent 24adf04fe3
commit 91981a6dd7
7 changed files with 54 additions and 29 deletions

View File

@@ -133,7 +133,7 @@ async function scrapeProfile({ query }, url, entity, options) {
profile.description = query.cnt('.person__content');
profile.gender = entity.slug === 'tranzvr' ? 'transsexual' : 'female';
profile.age = bio.age;
profile.age = Number(bio.age) || null;
profile.birthPlace = bio.birthplace;