From 00089b96c4b6e9936e2b39ef7da3d9089aeacb4a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 1 Apr 2024 17:22:26 -0700 Subject: [PATCH] chore: adjust scrobble window --- api/scrobble.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/scrobble.js b/api/scrobble.js index f5f7096e..4a0d25ae 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -18,7 +18,7 @@ const weekKey = () => { } const filterOldScrobbles = (scrobbles) => { - const twoWeeksAgo = DateTime.now().minus({ days: 10 }); + const twoWeeksAgo = DateTime.now().minus({ days: 7 }); return scrobbles.filter(scrobble => { const timestamp = DateTime.fromISO(scrobble.timestamp); return timestamp >= twoWeeksAgo;