From ee88a8abfc7e0a8e2b4cd3a50a3097313e3a8dea Mon Sep 17 00:00:00 2001 From: Thomas Lynch Date: Mon, 22 Mar 2021 05:13:23 +0000 Subject: [PATCH] fix dates on webring causing incorrect sort on boardlist too --- schedules/tasks/webring.js | 1 + 1 file changed, 1 insertion(+) diff --git a/schedules/tasks/webring.js b/schedules/tasks/webring.js index b52579b2..dd9e38da 100644 --- a/schedules/tasks/webring.js +++ b/schedules/tasks/webring.js @@ -67,6 +67,7 @@ module.exports = { name: board.title, description: board.subtitle, }; + board.lastPostTimestamp = new Date(board.lastPostTimestamp.toString()); }); webringBoards = webringBoards.concat(ring.boards); }