chore: tweak output
This commit is contained in:
parent
4e198eddf5
commit
87b3cf2ad1
1 changed files with 7 additions and 4 deletions
|
@ -3,11 +3,14 @@ const chartData = require('./json/weekly-artist-charts.json')
|
|||
module.exports = async function () {
|
||||
const artists = chartData['weeklyartistchart']['artist'].splice(0, 8)
|
||||
const date = parseInt(chartData['weeklyartistchart']['@attr']['to']) * 1000
|
||||
let content = 'My top artists for the week:\n'
|
||||
artists.forEach((artist) => {
|
||||
content += `#${artist['@attr']['rank']} ${artist['name']}: ${artist['playcount']} plays\n`
|
||||
let content = 'My top artists for the week: '
|
||||
artists.forEach((artist, index) => {
|
||||
content += `${artist['name']} @ ${artist['playcount']} play${
|
||||
parseInt(artist['playcount']) > 1 ? 's' : ''
|
||||
}`
|
||||
if (index !== artists.length - 1) content += ', '
|
||||
})
|
||||
content += '#Music #LastFM'
|
||||
content += ' #Music #LastFM'
|
||||
return [
|
||||
{
|
||||
title: content,
|
||||
|
|
Reference in a new issue