From 8df18880cbf91f6e2420d7b31993a1f0cdb60af9 Mon Sep 17 00:00:00 2001 From: dbroqua Date: Tue, 7 Jan 2020 16:26:09 +0100 Subject: [PATCH] Fixed bug --- libs/Statistics.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)