chore: fix encoding

This commit is contained in:
Cory Dransfeldt 2023-12-07 18:49:42 -08:00
parent a4df253608
commit a5aaf75aeb

View file

@ -7,7 +7,7 @@ module.exports = async function () {
const date = parseInt(chart['weeklyartistchart']['@attr']['to']) * 1000
let content = 'My top artists for the week: '
artists.forEach((artist, index) => {
const artistName = artist['name'].replace('&', '&');
const artistName = artist['name'].replace('&', 'and');
content += `${artistName} @ ${artist['playcount']} play${
parseInt(artist['playcount']) > 1 ? 's' : ''
}`