fix: encode artist names

This commit is contained in:
Cory Dransfeldt 2023-12-07 18:24:48 -08:00
parent e8ceff6de9
commit 5abdeb193e

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) => {
content += `${artist['name']} @ ${artist['playcount']} play${
content += `${encodeURIComponent(artist['name'])} @ ${artist['playcount']} play${
parseInt(artist['playcount']) > 1 ? 's' : ''
}`
if (index !== artists.length - 1) content += ', '