diff --git a/libs/Statistics.js b/libs/Statistics.js index 4ab9581..dec3d9a 100644 --- a/libs/Statistics.js +++ b/libs/Statistics.js @@ -82,7 +82,7 @@ class When extends Queries { return true } - for (let i = 1; i < items.length; i + 1) { + for (let i = 0; i < items.length; i += 1) { if (artists.indexOf(items[i].artist) === -1) { artists.push(items[i].artist) } @@ -91,7 +91,7 @@ class When extends Queries { } } - botSay(where, `Pour cette période tu as pu entendre ${artists.length} différents pour un total de ${songs.length} morceaux différents !`) + botSay(where, `Pour cette période tu as pu entendre ${artists.length} artistes différents pour un total de ${songs.length} morceaux différents !`) }) .catch(err => { console.error('ERR:', err)