chore: adjust scrobble window

This commit is contained in:
Cory Dransfeldt 2024-04-01 17:22:26 -07:00
parent b5dd36fe5f
commit 00089b96c4
No known key found for this signature in database

View file

@ -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;