chore: consistent syntax for data access

This commit is contained in:
Cory Dransfeldt 2023-08-15 16:32:20 -07:00
parent 2a08c3365a
commit f20ff5d6ec
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ module.exports = async function () {
type: 'json', type: 'json',
}).catch() }).catch()
const data = await res const data = await res
return data['topalbums'].album.map((album) => { return data['topalbums']['album'].map((album) => {
return { return {
title: album['name'], title: album['name'],
artist: album['artist']['name'], artist: album['artist']['name'],

View file

@ -8,7 +8,7 @@ module.exports = async function () {
type: 'json', type: 'json',
}).catch() }).catch()
const data = await res const data = await res
return data['topartists'].artist.map((artist) => { return data['topartists']['artist'].map((artist) => {
return { return {
title: artist['name'], title: artist['name'],
plays: artist['playcount'], plays: artist['playcount'],

View file

@ -10,7 +10,7 @@ module.exports = async function () {
fetchOptions: { headers }, fetchOptions: { headers },
}) })
const data = await res const data = await res
const links = data.results.filter((result) => Object.keys(result.tags).includes('share')) const links = data['results'].filter((result) => Object.keys(result.tags).includes('share'))
return links.map((link) => { return links.map((link) => {
return { return {
title: link['title'], title: link['title'],

View file

@ -9,6 +9,6 @@ module.exports = async function () {
}).catch() }).catch()
const webmentions = await res const webmentions = await res
return { return {
mentions: webmentions.children, mentions: webmentions['children'],
} }
} }