chore: scrobbling
This commit is contained in:
parent
27481949e7
commit
e9c16f8fbe
2 changed files with 3 additions and 3 deletions
|
@ -31,14 +31,14 @@ export default async (request) => {
|
||||||
if (weeksArr.length > 0) {
|
if (weeksArr.length > 0) {
|
||||||
weeksArr.forEach(async (week) => {
|
weeksArr.forEach(async (week) => {
|
||||||
const weekData = await scrobbles.get(week, { type: 'json'})
|
const weekData = await scrobbles.get(week, { type: 'json'})
|
||||||
scrobbleData.push(weekData['data'])
|
scrobbleData.push(...weekData['data'])
|
||||||
})
|
})
|
||||||
} else if (weeksString) {
|
} else if (weeksString) {
|
||||||
const weekData = await scrobbles.get(weeksString, { type: 'json'})
|
const weekData = await scrobbles.get(weeksString, { type: 'json'})
|
||||||
scrobbleData.push(weekData['data'])
|
scrobbleData.push(...weekData['data'])
|
||||||
} else {
|
} else {
|
||||||
const windowData = await scrobbles.get('window', { type: 'json'})
|
const windowData = await scrobbles.get('window', { type: 'json'})
|
||||||
scrobbleData.push(windowData['data'])
|
scrobbleData.push(...windowData['data'])
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Response(JSON.stringify({ data: scrobbleData }),
|
return new Response(JSON.stringify({ data: scrobbleData }),
|
||||||
|
|
0
src/_data/music.js
Normal file
0
src/_data/music.js
Normal file
Reference in a new issue