Compare commits

..

No commits in common. "7171ac92525ed9bc6f459538e82828c9c8d44ae6" and "43af2ef9c98d11cfc66d190974c0e07106441c2e" have entirely different histories.

4 changed files with 6 additions and 6 deletions

View File

@ -62,7 +62,7 @@ const actorsFields = `
date_of_birth timestamp,
country string,
has_avatar bool,
mass int,
weight int,
height int,
cup string,
natural_boobs int,

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.237.3",
"version": "1.237.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.237.3",
"version": "1.237.2",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.237.3",
"version": "1.237.2",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -42,7 +42,7 @@ async function init() {
date_of_birth timestamp,
country string,
has_avatar bool,
mass int,
weight int,
height int,
cup string,
natural_boobs int,
@ -66,7 +66,7 @@ async function init() {
has_avatar: !!actor.avatar_media_id,
country: actor.birth_country_alpha2 || undefined,
height: actor.height || undefined,
mass: actor.weight || undefined, // weight is a reserved keyword in manticore
weight: actor.weight || undefined,
cup: actor.cup || undefined,
natural_boobs: actor.natural_boobs === null ? 0 : Number(actor.natural_boobs) + 1, // manticore bool does not seem to support null, and we need three states for natural_boobs: yes, no and unknown
penis_length: actor.penis_length || undefined,