fix: now playing track

This commit is contained in:
Cory Dransfeldt 2024-05-11 12:20:02 -07:00
parent 1d17dc3c5b
commit 525828019d
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "14.1.1",
"version": "14.1.2",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {

View file

@ -105,7 +105,7 @@ export default async function() {
tracks: aggregateData(recentData, 'track_name', 'track'),
trackChart: aggregateData(recentData, 'track_name', 'track', false),
}
results.nowPlaying = results.recent.tracks[0]
results.nowPlaying = results.recent.trackChart[0]
return results
}