diff --git a/kernel/api/search.go b/kernel/api/search.go index c71298faf..19fe7d105 100644 --- a/kernel/api/search.go +++ b/kernel/api/search.go @@ -83,6 +83,9 @@ func searchTag(c *gin.Context) { k := arg["k"].(string) tags := model.SearchTags(k) + if 1 > len(tags) { + tags = []string{} + } ret.Data = map[string]interface{}{ "tags": tags, "k": k, diff --git a/kernel/model/tag.go b/kernel/model/tag.go index a56ce975c..0af770f64 100644 --- a/kernel/model/tag.go +++ b/kernel/model/tag.go @@ -20,6 +20,7 @@ import ( "bytes" "errors" "fmt" + "github.com/siyuan-note/logging" "sort" "strings" @@ -282,6 +283,7 @@ func sortTags(tags Tags) { func SearchTags(keyword string) (ret []string) { ret = []string{} + defer logging.Recover() // TODO: 定位 无法添加题头图标签 https://github.com/siyuan-note/siyuan/issues/6756 labels := labelBlocksByKeyword(keyword) for label, _ := range labels {