🐛 打开自定义属性搜索选项后出现多余搜索结果 Fix https://github.com/siyuan-note/siyuan/issues/7367

This commit is contained in:
Liang Ding 2023-02-15 11:13:02 +08:00
parent b407ff9003
commit b1a78149f2
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 16 additions and 3 deletions

View file

@ -108,9 +108,6 @@ func (s *Search) NAMFilter(keyword string) string {
if s.Memo {
buf.WriteString(" OR memo LIKE '%" + keyword + "%'")
}
if s.Custom {
buf.WriteString(" OR ial LIKE '%=%" + keyword + "%'")
}
return buf.String()
}