fix: missing book covers
This commit is contained in:
parent
6a7015a798
commit
7fe43a0297
1 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,10 @@ module.exports = async function () {
|
|||
const res = await extract(url, {
|
||||
getExtraEntryFields: (feedEntry) => {
|
||||
return {
|
||||
image: feedEntry['oku:cover'] || 'https://cdn.coryd.dev/books/missing-book.jpg',
|
||||
image:
|
||||
feedEntry['oku:cover'] ||
|
||||
`https://cdn.coryd.dev/books/${feedEntry.title.replace(/\s+/g, '-').toLowerCase()}.jpg` ||
|
||||
'https://cdn.coryd.dev/books/missing-book.jpg',
|
||||
}
|
||||
},
|
||||
})
|
||||
|
|
Reference in a new issue