From 83c9b6ca957519990153f1910e3d0cb09d19bd10 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 18 Apr 2024 18:11:15 -0700 Subject: [PATCH] chore: simplify plugin --- plugins/fetch-scrobbles/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 92d936fa..83468372 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -6,7 +6,7 @@ const getKeys = (months = 1) => { const currentDate = DateTime.now() const weeks = Math.floor((currentDate.daysInMonth * months) / 7) let count = 0 - const keys = [] + const keys = [`${currentDate.year}-${currentDate.weekNumber}`] while (count < weeks) { const weeks = 1 * (count + 1) @@ -15,8 +15,6 @@ const getKeys = (months = 1) => { count++; } - keys.push(`${currentDate.year}-${currentDate.weekNumber}`) - return keys }