Fix Artist filtering

This commit is contained in:
Deluan 2020-11-02 09:48:00 -05:00
parent 779d4a1c85
commit 7819e834c8
2 changed files with 4 additions and 1 deletions

View file

@ -84,7 +84,7 @@ func (r *artistRepository) GetAll(options ...model.QueryOptions) (model.Artists,
}
func (r *artistRepository) toModels(dba []dbArtist) model.Artists {
var res model.Artists
res := model.Artists{}
for i := range dba {
a := dba[i]
res = append(res, *r.toModel(&a))