mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🐛 英文单引号无法搜索 Fix https://github.com/siyuan-note/siyuan/issues/5126
This commit is contained in:
parent
f14b71878b
commit
66ff043eff
1 changed files with 1 additions and 0 deletions
|
|
@ -508,6 +508,7 @@ func columnFilter() string {
|
|||
|
||||
func stringQuery(query string) string {
|
||||
query = strings.ReplaceAll(query, "\"", "\"\"")
|
||||
query = strings.ReplaceAll(query, "'", "''")
|
||||
|
||||
buf := bytes.Buffer{}
|
||||
parts := strings.Split(query, " ")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue