chore: tweak output

This commit is contained in:
Cory Dransfeldt 2023-11-14 16:20:53 -08:00
parent 4e198eddf5
commit 87b3cf2ad1

View file

@ -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,