fix: book url structure

This commit is contained in:
Cory Dransfeldt 2023-06-26 20:06:01 -07:00
parent 3ba3ee5902
commit 4c8eb3424b
No known key found for this signature in database

View file

@ -11,7 +11,10 @@ module.exports = async function () {
return {
image:
feedEntry['oku:cover'] ||
`https://cdn.coryd.dev/books/${feedEntry.title.replace(/\s+/g, '-').toLowerCase()}.jpg` ||
`https://cdn.coryd.dev/books/${feedEntry.title
.replace(/\s+/g, '-')
.replace(':', '')
.toLowerCase()}.jpg` ||
'https://cdn.coryd.dev/books/missing-book.jpg',
}
},