chore: catch anything thrown out of a fetch
This commit is contained in:
parent
e9a615de0d
commit
1e25e460fc
7 changed files with 11 additions and 9 deletions
|
@ -6,7 +6,7 @@ module.exports = async function () {
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
})
|
}).catch()
|
||||||
const albums = await res
|
const albums = await res
|
||||||
return albums.topalbums.album
|
return albums.topalbums.album
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ module.exports = async function () {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
fetchOptions: { headers },
|
fetchOptions: { headers },
|
||||||
})
|
}).catch()
|
||||||
const feed = await res
|
const feed = await res
|
||||||
const articles = feed.feed.splice(0, 5)
|
const articles = feed.feed.splice(0, 5)
|
||||||
return articles
|
return articles
|
||||||
|
|
|
@ -6,7 +6,7 @@ module.exports = async function () {
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
})
|
}).catch()
|
||||||
const artists = await res
|
const artists = await res
|
||||||
return artists.topartists.artist
|
return artists.topartists.artist
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,9 +5,11 @@ module.exports = async function () {
|
||||||
const url = 'https://oku.club/rss/collection/POaRa'
|
const url = 'https://oku.club/rss/collection/POaRa'
|
||||||
const asset = new AssetCache('books_data')
|
const asset = new AssetCache('books_data')
|
||||||
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
||||||
const res = await extract(url).catch((error) => {
|
const res = await extract(url)
|
||||||
console.log(error.message)
|
.catch((error) => {
|
||||||
})
|
console.log(error.message)
|
||||||
|
})
|
||||||
|
.catch()
|
||||||
const data = res.entries
|
const data = res.entries
|
||||||
await asset.save(data, 'json')
|
await asset.save(data, 'json')
|
||||||
return data
|
return data
|
||||||
|
|
|
@ -5,7 +5,7 @@ module.exports = async function () {
|
||||||
feed.addSource('atom', 'Link', 'https://coryd.dev/links.xml')
|
feed.addSource('atom', 'Link', 'https://coryd.dev/links.xml')
|
||||||
feed.addSource('rss', 'Letterboxd', 'https://letterboxd.com/cdme/rss')
|
feed.addSource('rss', 'Letterboxd', 'https://letterboxd.com/cdme/rss')
|
||||||
feed.addSource('rss', 'Oku', 'https://oku.club/rss/collection/NvEmF')
|
feed.addSource('rss', 'Oku', 'https://oku.club/rss/collection/NvEmF')
|
||||||
const entries = feed.getEntries()
|
const entries = feed.getEntries().catch()
|
||||||
const res = await entries
|
const res = await entries
|
||||||
const activity = { posts: [] }
|
const activity = { posts: [] }
|
||||||
res.forEach((entry) =>
|
res.forEach((entry) =>
|
||||||
|
|
|
@ -5,7 +5,7 @@ module.exports = async function () {
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
})
|
}).catch()
|
||||||
const status = await res
|
const status = await res
|
||||||
return status.response.statuses[0]
|
return status.response.statuses[0]
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ module.exports = async function () {
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
})
|
}).catch()
|
||||||
const webmentions = await res
|
const webmentions = await res
|
||||||
return {
|
return {
|
||||||
mentions: webmentions.children,
|
mentions: webmentions.children,
|
||||||
|
|
Reference in a new issue