chore: scrobbles
This commit is contained in:
parent
bb7fd5a6a6
commit
14706f4217
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ const weekStop = () => {
|
||||||
|
|
||||||
const filterOldScrobbles = (scrobbles) => {
|
const filterOldScrobbles = (scrobbles) => {
|
||||||
const twoWeeksAgo = DateTime.now().minus({ weeks: 2 });
|
const twoWeeksAgo = DateTime.now().minus({ weeks: 2 });
|
||||||
return scrobbles.filter(obj => {
|
return scrobbles.filter(scrobble => {
|
||||||
const timestamp = DateTime.fromISO(obj.timestamp);
|
const timestamp = DateTime.fromISO(scrobble.timestamp);
|
||||||
return timestamp >= twoWeeksAgo;
|
return timestamp >= twoWeeksAgo;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue