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
dateOfDeath
age
dateOfBirth
ageFromBirth
ageAtDeath
ethnicity
@ -280,6 +281,7 @@ function initActorActions(store, router) {
name
slug
age
dateOfBirth
ageFromBirth
ageAtDeath
dateOfBirth

2
package-lock.json generated
View File

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

View File

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

View File

@ -107,7 +107,7 @@ function getMostFrequentDate(dates) {
}
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) {