chore: adjust scrobble window
This commit is contained in:
parent
6a8abfd085
commit
cc0e1d1470
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ const weekKey = () => {
|
|||
}
|
||||
|
||||
const filterOldScrobbles = (scrobbles) => {
|
||||
const twoWeeksAgo = DateTime.now().minus({ weeks: 2 });
|
||||
const twoWeeksAgo = DateTime.now().minus({ days: 10 });
|
||||
return scrobbles.filter(scrobble => {
|
||||
const timestamp = DateTime.fromISO(scrobble.timestamp);
|
||||
return timestamp >= twoWeeksAgo;
|
||||
|
|
Reference in a new issue