From 51f1ce3a539fce242781871094a115cb764f07f0 Mon Sep 17 00:00:00 2001 From: baz Date: Tue, 31 Dec 2024 00:38:50 +0000 Subject: [PATCH] Fix date sorting --- databaseHelperFunctions.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/databaseHelperFunctions.js b/databaseHelperFunctions.js index 1a7dbae..12a4670 100644 --- a/databaseHelperFunctions.js +++ b/databaseHelperFunctions.js @@ -296,7 +296,7 @@ async function getLeaderboardEntries() { let dateLastBeat = new Date(); if (count > 0) { - const lastGame = games.at(-1); + const lastGame = games[games.length - 1]; dateLastBeat = lastGame.statusLastChanged; } @@ -310,8 +310,8 @@ async function getLeaderboardEntries() { results.push(result); } - await results.sort((a, b) => parseInt(a.dateLastBeat) - parseInt(b.dateLastBeat)); - await results.sort((a, b) => parseInt(b.count) - parseInt(a.count)); + results.sort((a, b) => new Date(a.dateLastBeat) - new Date(b.dateLastBeat)); + results.sort((a, b) => parseInt(b.count) - parseInt(a.count)); return results; } @@ -333,7 +333,7 @@ async function getLeaderboardEntriesBetweenDates(start, end) { let dateLastBeat = new Date(); if (count > 0) { - const lastGame = games.at(-1); + const lastGame = games[games.length - 1]; dateLastBeat = lastGame.statusLastChanged; } @@ -347,8 +347,8 @@ async function getLeaderboardEntriesBetweenDates(start, end) { results.push(result); } - await results.sort((a, b) => parseInt(a.dateLastBeat) - parseInt(b.dateLastBeat)); - await results.sort((a, b) => parseInt(b.count) - parseInt(a.count)); + results.sort((a, b) => new Date(a.dateLastBeat) - new Date(b.dateLastBeat)); + results.sort((a, b) => parseInt(b.count) - parseInt(a.count)); return results; }