fix: album release filtering

This commit is contained in:
Cory Dransfeldt 2024-11-22 10:54:14 -08:00
parent 9a87398f32
commit d679bbb7e1
No known key found for this signature in database

View file

@ -42,7 +42,7 @@ export async function fetchAlbumReleases() {
.sort((a, b) => a.timestamp - b.timestamp); .sort((a, b) => a.timestamp - b.timestamp);
const upcoming = all.filter((album) => const upcoming = all.filter((album) =>
isAfter(new Date(album.release_timestamp * 1000), new Date(today)) isAfter(new Date(album.release_timestamp * 1000), new Date(today)) && album.total_plays === 0
); );
cachedAlbumReleases = { all, upcoming }; cachedAlbumReleases = { all, upcoming };