Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 03915110cf 1.145.5 2020-12-17 03:43:18 +01:00
DebaucheryLibrarian d67dca60fc Fixed birthdate interpolation and query. 2020-12-17 03:43:09 +01:00
4 changed files with 5 additions and 3 deletions

View File

@ -40,6 +40,7 @@ function initActorActions(store, router) {
dateOfBirth dateOfBirth
dateOfDeath dateOfDeath
age age
dateOfBirth
ageFromBirth ageFromBirth
ageAtDeath ageAtDeath
ethnicity ethnicity
@ -280,6 +281,7 @@ function initActorActions(store, router) {
name name
slug slug
age age
dateOfBirth
ageFromBirth ageFromBirth
ageAtDeath ageAtDeath
dateOfBirth dateOfBirth

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.145.4", "version": "1.145.5",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

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

View File

@ -107,7 +107,7 @@ function getMostFrequentDate(dates) {
} }
function getHighest(items) { function getHighest(items) {
return items.reduce((prevItem, item) => (item > prevItem ? item : prevItem), 0); return items.reduce((prevItem, item) => (item > prevItem ? item : prevItem), null);
} }
function getLongest(items) { function getLongest(items) {