Fixed slugify behavior.

This commit is contained in:
DebaucheryLibrarian
2026-01-10 04:33:15 +01:00
parent e84beacca1
commit 19dbd624ca
8 changed files with 77 additions and 41 deletions

View File

@@ -363,7 +363,7 @@ function scrapeProfile(data, networkName, _releases = []) {
profile.gender = data.gender === 'other' ? 'transsexual' : data.gender;
if (profile.gender === 'male') {
profile.penisLength = Number(data.measurements);
profile.penisLength = Number(data.measurements) || null;
} else {
profile.measurements = data.measurements;
}