chore: scrobbling
This commit is contained in:
parent
29cddaeab7
commit
b2a4b12e25
1 changed files with 1 additions and 5 deletions
|
@ -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'])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue