chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-30 15:30:59 -07:00
parent 29cddaeab7
commit b2a4b12e25
No known key found for this signature in database

View file

@ -19,10 +19,6 @@ export default async (request) => {
) )
const scrobbles = getStore('scrobbles') const scrobbles = getStore('scrobbles')
const weekKey = () => {
const currentDate = DateTime.now();
return `${currentDate.year}-${currentDate.weekNumber}`
}
const scrobbleData = [] const scrobbleData = []
if (weeks) { if (weeks) {
weeks.forEach(async (week) => { weeks.forEach(async (week) => {
@ -30,7 +26,7 @@ export default async (request) => {
scrobbleData.push(weekData['data']) scrobbleData.push(weekData['data'])
}) })
} else { } else {
const weekData = await scrobbles.get(weekKey(), { type: 'json'}) const weekData = await scrobbles.get('window', { type: 'json'})
scrobbleData.push(weekData['data']) scrobbleData.push(weekData['data'])
} }