Merge branch 'main' of github.com:cdransf/coryd.dev

This commit is contained in:
Cory Dransfeldt 2023-04-27 11:18:42 -07:00
commit 5ac8ab24c7
No known key found for this signature in database

View file

@ -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) => {