Fixed Mention Admin API mapper

There was a typo when reading the featured image property causing it not to show
up in the API responses.
This commit is contained in:
Fabien "egg" O'Carroll 2023-01-18 13:28:50 +07:00
parent 52892e0695
commit a7eeb8f628

View File

@ -13,6 +13,6 @@ module.exports = (model) => {
source_excerpt: json.sourceExcerpt,
source_author: json.sourceAuthor,
source_favicon: json.sourceFavicon,
source_featured_image: json.sourceFeauredImage
source_featured_image: json.sourceFeaturedImage
};
};