fix: book url structure
This commit is contained in:
parent
3ba3ee5902
commit
4c8eb3424b
1 changed files with 4 additions and 1 deletions
|
@ -11,7 +11,10 @@ module.exports = async function () {
|
||||||
return {
|
return {
|
||||||
image:
|
image:
|
||||||
feedEntry['oku:cover'] ||
|
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',
|
'https://cdn.coryd.dev/books/missing-book.jpg',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue