From 56c9f498ba65a37d29e649521471d497dd19ba87 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 9 Apr 2024 06:32:11 -0700 Subject: [PATCH] fix: timestamp --- package.json | 2 +- src/_data/weeklyArtistChart.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e71afb3b..c8f493b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "9.9.2", + "version": "9.9.3", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_data/weeklyArtistChart.js b/src/_data/weeklyArtistChart.js index ff150b7b..74d0065b 100644 --- a/src/_data/weeklyArtistChart.js +++ b/src/_data/weeklyArtistChart.js @@ -17,7 +17,7 @@ export default async function () { return [{ title: content, - url: `https://coryd.dev/now?ts=${currentDate.toMillis()}#artists`, + url: `https://coryd.dev/now?ts=${parseInt(chartData['timestamp'])}#artists`, date: DateTime.fromMillis(parseInt(chartData['timestamp'])).toISO(), description: `My top artists for the last week ending ${currentDate.minus({ days: 1 }).toLocaleString(DateTime.DATE_FULL)}.

` }]