Added Model Media API layout, renamed AsiaM.

This commit is contained in:
DebaucheryLibrarian
2026-02-06 04:55:40 +01:00
parent e91ff659e9
commit 5a210451e0
12 changed files with 178 additions and 24 deletions

View File

@@ -38,7 +38,7 @@ function scrapeProfile(html, actorName) {
if (bio.dateOfBirth) profile.birthdate = moment.utc(bio.dateOfBirth, 'YYYY-MM-DD').toDate();
if (profile.placeOfBirth && bio.country) profile.birthPlace = `${bio.placeOfBirth}, ${bio.country}`;
if (bio.placeOfBirth && bio.country) profile.birthPlace = `${bio.placeOfBirth}, ${bio.country}`;
else if (bio.country) profile.birthPlace = bio.country;
profile.eyes = bio.eyeColor;