Search for artists case-insensitive

This commit is contained in:
Deluan 2020-10-20 15:20:27 -04:00 committed by Deluan Quintão
parent e9e09a7480
commit 40fd5bab34

View file

@ -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