diff --git a/kernel/model/blockinfo.go b/kernel/model/blockinfo.go index 760d74b9e..8d48c6435 100644 --- a/kernel/model/blockinfo.go +++ b/kernel/model/blockinfo.go @@ -90,7 +90,7 @@ func GetDocInfo(blockID string) (ret *BlockInfo) { } } - ret.RefIDs, _ = sql.QueryRefIDsByDefID(blockID, false) + ret.RefIDs, _ = sql.QueryRefIDsByDefID(blockID, Conf.Editor.BacklinkContainChildren) buildBacklinkListItemRefs(&ret.RefIDs) ret.RefCount = len(ret.RefIDs) // 填充块引计数 @@ -163,7 +163,7 @@ func GetDocsInfo(blockIDs []string, queryRefCount bool, queryAv bool) (rets []*B } } if queryRefCount { - ret.RefIDs, _ = sql.QueryRefIDsByDefID(blockID, false) + ret.RefIDs, _ = sql.QueryRefIDsByDefID(blockID, Conf.Editor.BacklinkContainChildren) ret.RefCount = len(ret.RefIDs) // 填充块引计数 }