From 848037b0f5991ee1d03947121aa469f3454e30ef Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Thu, 17 Jul 2025 17:25:47 +0800 Subject: [PATCH] :art: Improve reference count refresh after converting heading block level https://github.com/siyuan-note/siyuan/issues/15298 --- kernel/model/block.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/model/block.go b/kernel/model/block.go index 0b6885780..2fcd8d856 100644 --- a/kernel/model/block.go +++ b/kernel/model/block.go @@ -655,6 +655,7 @@ func GetHeadingLevelTransaction(id string, level int) (transaction *Transaction, ccH := c.ChildrenByType(ast.NodeHeading) childrenHeadings = append(childrenHeadings, ccH...) } + fillBlockRefCount(childrenHeadings) transaction = &Transaction{} luteEngine := util.NewLute()