chore: make mapped var name clearer
This commit is contained in:
parent
39b34ec90c
commit
64085621b7
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ module.exports = async function () {
|
||||||
getExtraEntryFields: (feedEntry) => {
|
getExtraEntryFields: (feedEntry) => {
|
||||||
const images = feedEntry['description']?.match(/<img [^>]*src="[^"]*"[^>]*>/gm) || []
|
const images = feedEntry['description']?.match(/<img [^>]*src="[^"]*"[^>]*>/gm) || []
|
||||||
return {
|
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) => {
|
}).catch((error) => {
|
||||||
|
|
Reference in a new issue