chore: album releases cleanup

This commit is contained in:
Cory Dransfeldt 2024-02-21 09:26:50 -08:00
parent 6f07c6aa4d
commit 4a68d4d64a
No known key found for this signature in database

View file

@ -5,7 +5,6 @@ import { DateTime } from 'luxon'
export default async function () {
const URL = process.env.SECRET_FEED_ALBUM_RELEASES
const icsToJson = ics.default
if (process.env.ELEVENTY_PRODUCTION) {
const asset = new AssetCache('album_release_data')
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
const icsRes = await fetch(URL)
@ -23,7 +22,4 @@ export default async function () {
})
await asset.save(albumReleases, 'json')
return albumReleases
} else {
return {}
}
}