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