🎨 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>
This commit is contained in:
Daniel 2026-01-17 17:11:10 +08:00
parent c08aec57fb
commit feaa7938ff
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -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
}