Merge branch 'main' of github.com:cdransf/coryd.dev
This commit is contained in:
commit
5ac8ab24c7
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ module.exports = async function () {
|
|||
getExtraEntryFields: (feedEntry) => {
|
||||
const images = feedEntry['description']?.match(/<img [^>]*src="[^"]*"[^>]*>/gm) || []
|
||||
return {
|
||||
image: images.length ? images.map((x) => x.replace(/.*src="([^"]*)".*/, '$1'))[0] : '',
|
||||
image: images.length ? images.map((image) => image.replace(/.*src="([^"]*)".*/, '$1'))[0] : '',
|
||||
}
|
||||
},
|
||||
}).catch((error) => {
|
||||
|
|
Reference in a new issue