chore: consistent syntax for data access
This commit is contained in:
parent
2a08c3365a
commit
f20ff5d6ec
4 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ module.exports = async function () {
|
|||
type: 'json',
|
||||
}).catch()
|
||||
const data = await res
|
||||
return data['topalbums'].album.map((album) => {
|
||||
return data['topalbums']['album'].map((album) => {
|
||||
return {
|
||||
title: album['name'],
|
||||
artist: album['artist']['name'],
|
||||
|
|
|
@ -8,7 +8,7 @@ module.exports = async function () {
|
|||
type: 'json',
|
||||
}).catch()
|
||||
const data = await res
|
||||
return data['topartists'].artist.map((artist) => {
|
||||
return data['topartists']['artist'].map((artist) => {
|
||||
return {
|
||||
title: artist['name'],
|
||||
plays: artist['playcount'],
|
||||
|
|
|
@ -10,7 +10,7 @@ module.exports = async function () {
|
|||
fetchOptions: { headers },
|
||||
})
|
||||
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 {
|
||||
title: link['title'],
|
||||
|
|
|
@ -9,6 +9,6 @@ module.exports = async function () {
|
|||
}).catch()
|
||||
const webmentions = await res
|
||||
return {
|
||||
mentions: webmentions.children,
|
||||
mentions: webmentions['children'],
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue