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 filterOldScrobbles = (scrobbles) => {
|
||||||
const twoWeeksAgo = DateTime.now().minus({ days: 10 });
|
const twoWeeksAgo = DateTime.now().minus({ days: 7 });
|
||||||
return scrobbles.filter(scrobble => {
|
return scrobbles.filter(scrobble => {
|
||||||
const timestamp = DateTime.fromISO(scrobble.timestamp);
|
const timestamp = DateTime.fromISO(scrobble.timestamp);
|
||||||
return timestamp >= twoWeeksAgo;
|
return timestamp >= twoWeeksAgo;
|
||||||
|
|
Reference in a new issue