mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +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"
|
"github.com/kennygrant/sanitize"
|
||||||
)
|
)
|
||||||
|
|
||||||
var quotesRegex = regexp.MustCompile("[“”‘’'\"]")
|
var quotesRegex = regexp.MustCompile("[“”‘’'\"\\[\\(\\{\\]\\)\\}]")
|
||||||
|
|
||||||
func getFullText(text ...string) string {
|
func getFullText(text ...string) string {
|
||||||
fullText := sanitizeStrings(text...)
|
fullText := sanitizeStrings(text...)
|
||||||
|
|
|
@ -26,5 +26,9 @@ var _ = Describe("sqlRepository", func() {
|
||||||
It("remove symbols", func() {
|
It("remove symbols", func() {
|
||||||
Expect(getFullText("Tom’s Diner ' “40” ‘A’")).To(Equal(" 40 a diner toms"))
|
Expect(getFullText("Tom’s Diner ' “40” ‘A’")).To(Equal(" 40 a diner toms"))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("remove opening brackets", func() {
|
||||||
|
Expect(getFullText("[Five Years]")).To(Equal(" five years"))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue