chore: last played track to now page

This commit is contained in:
Cory Dransfeldt 2024-04-03 14:13:49 -07:00
parent d9fdcad1f1
commit d9c148d08c
No known key found for this signature in database
4 changed files with 7 additions and 11 deletions

View file

@ -9,5 +9,5 @@ export default async function () {
type: 'json',
}).catch();
const resObj = await res;
return buildChart(resObj['scrobbles'], resObj['artists'], resObj['albums'])
return buildChart(resObj['scrobbles'], resObj['artists'], resObj['albums'], resObj['nowPlaying'])
}