fix: missing type prevented markup from being parsed properly for all feed
This commit is contained in:
parent
51dd4db062
commit
4e49d0faae
4 changed files with 6 additions and 7 deletions
|
@ -98,7 +98,8 @@ export const processContent = (collection) => {
|
|||
|
||||
const content = {
|
||||
url: `${BASE_URL}${item['url']}`,
|
||||
title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`
|
||||
title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`,
|
||||
type: item['type']
|
||||
}
|
||||
|
||||
// set url for link posts
|
||||
|
|
Reference in a new issue