mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Ignore brackets in search
This commit is contained in:
parent
72e92c7318
commit
aaa4f1531e
2 changed files with 5 additions and 1 deletions
|
@ -9,7 +9,7 @@ import (
|
|||
"github.com/kennygrant/sanitize"
|
||||
)
|
||||
|
||||
var quotesRegex = regexp.MustCompile("[“”‘’'\"]")
|
||||
var quotesRegex = regexp.MustCompile("[“”‘’'\"\\[\\(\\{\\]\\)\\}]")
|
||||
|
||||
func getFullText(text ...string) string {
|
||||
fullText := sanitizeStrings(text...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue