Compare commits

..

No commits in common. "03915110cfac71f32f9b722545e474a7a4ea6aa0" and "a3306ad4e7a281b6a8ff16a2006022b729458ed9" have entirely different histories.

4 changed files with 3 additions and 5 deletions

View File

@ -40,7 +40,6 @@ function initActorActions(store, router) {
dateOfBirth
dateOfDeath
age
dateOfBirth
ageFromBirth
ageAtDeath
ethnicity
@ -281,7 +280,6 @@ 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.5",
"version": "1.145.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.145.5",
"version": "1.145.4",
"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), null);
return items.reduce((prevItem, item) => (item > prevItem ? item : prevItem), 0);
}
function getLongest(items) {