chore: adjust scrobble window
This commit is contained in:
parent
b5dd36fe5f
commit
00089b96c4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue