Skip to content

Commit

Permalink
Include tracks in TopSongs where the requested artist is the album ar…
Browse files Browse the repository at this point in the history
…tist
  • Loading branch information
deluan committed Oct 21, 2020
1 parent 12cedee commit 53c1e9e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/external_info.go
Expand Up @@ -151,7 +151,10 @@ func (e *externalInfo) TopSongs(ctx context.Context, artist string, count int) (
for _, t := range tracks {
mfs, err := e.ds.MediaFile(ctx).GetAll(model.QueryOptions{
Filters: squirrel.And{
squirrel.Like{"artist": artist},
squirrel.Or{
squirrel.Like{"artist": artist},
squirrel.Like{"album_artist": artist},
},
squirrel.Like{"title": t.Name},
},
Sort: "year",
Expand Down

0 comments on commit 53c1e9e

Please sign in to comment.