Przeglądaj źródła

:bug: Replace fails when search results contain mixed case in text elements https://github.com/siyuan-note/siyuan/issues/9171

Daniel 8 miesięcy temu
rodzic
commit
45a4d05c9f
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      kernel/model/search.go

+ 1 - 1
kernel/model/search.go

@@ -834,7 +834,7 @@ func replaceTextNode(text *ast.Node, method int, keyword string, replacement str
 			// Replace fails when search results contain mixed case in text elements https://github.com/siyuan-note/siyuan/issues/9171
 			keywords := strings.Split(keyword, " ")
 			// keyword 可能是 "foo Foo" 使用空格分隔的大小写命中情况,这里统一转换小写后去重
-			if 1 < len(keywords) {
+			if 0 < len(keywords) {
 				var lowerKeywords []string
 				for _, k := range keywords {
 					lowerKeywords = append(lowerKeywords, strings.ToLower(k))