mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Search for artists case-insensitive
This commit is contained in:
parent
e9e09a7480
commit
40fd5bab34
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ func (r *artistRepository) Get(id string) (*model.Artist, error) {
|
|||
}
|
||||
|
||||
func (r *artistRepository) FindByName(name string) (*model.Artist, error) {
|
||||
sel := r.selectArtist().Where(Eq{"name": name})
|
||||
sel := r.selectArtist().Where(Like{"name": name})
|
||||
var res model.Artists
|
||||
if err := r.queryAll(sel, &res); err != nil {
|
||||
return nil, err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue