mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix: allow searches with 2 chars. closes #65
This commit is contained in:
parent
400fa65326
commit
5a95feeedc
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ func (r sqlRepository) index(id string, text string) error {
|
|||
|
||||
func (r sqlRepository) doSearch(q string, offset, size int, results interface{}, orderBys ...string) error {
|
||||
q = strings.TrimSpace(sanitize.Accents(strings.ToLower(strings.TrimSuffix(q, "*"))))
|
||||
if len(q) <= 2 {
|
||||
if len(q) < 2 {
|
||||
return nil
|
||||
}
|
||||
sq := Select("*").From(r.tableName)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue