From feaa7938fff8cea8b93e6e88fa06dbc5ebe204fd Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sat, 17 Jan 2026 17:11:10 +0800 Subject: [PATCH] :art: Distinguishing between a referenced definition block that does not exist or one that is not indexed https://github.com/siyuan-note/siyuan/issues/16850 Signed-off-by: Daniel <845765@qq.com> --- kernel/api/block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/api/block.go b/kernel/api/block.go index 45e163730..d7d7bedbb 100644 --- a/kernel/api/block.go +++ b/kernel/api/block.go @@ -667,7 +667,7 @@ func getBlockInfo(c *gin.Context) { return } else if errors.Is(err, model.ErrBoxUnindexed) { ret.Code = -1 - ret.Msg = "" + ret.Msg = "" // 加载的时候已经推送过提示了,这里不需要再提示 return }