fix(notebooks): fix bug in notebooks generator - `notebooks.tree` is an object, not array (#543)

This commit is contained in:
calfzhou 2024-11-19 15:42:47 +08:00 committed by GitHub
parent 48ab63cc2d
commit beb5f3d348
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ function paginationWithEmpty(base, posts, options={}) {
hexo.extend.generator.register('notebooks', function (locals) { hexo.extend.generator.register('notebooks', function (locals) {
const { site_tree, notebooks } = hexo.theme.config const { site_tree, notebooks } = hexo.theme.config
if (notebooks.tree.length === undefined) { if (!notebooks?.tree || Object.keys(notebooks.tree).length === 0) {
return [] return []
} }