fix: fix build error for no title or description

对于未设置标题或者描述的 notion 文档会出现报错,本 pr 修复了此问题。
This commit is contained in:
怀策
2022-04-01 22:39:01 +08:00
committed by GitHub
parent 37dc2e028f
commit 63fd4a265c

View File

@@ -157,8 +157,8 @@ async function getBlogInfo ({ notionPageData, from }) {
return null
}
const collection = notionPageData?.collection
const title = collection?.name[0][0] || BLOG.TITLE
const description = collection?.description[0][0] || BLOG.DESCRIPTION
const title = collection?.name?.[0][0] || BLOG.TITLE
const description = collection?.description?.[0][0] || BLOG.DESCRIPTION
const pageCover = mapCoverUrl(collection?.cover, notionPageData.block)
return { title, description, pageCover }
}