From 69e10597051b625de68535f2a894eacd48446587 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 21 Oct 2020 15:11:26 -0400 Subject: [PATCH] Prefer starred and high rated versions for Top Songs --- core/external_info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/external_info.go b/core/external_info.go index 051bc1c1..4785bb9b 100644 --- a/core/external_info.go +++ b/core/external_info.go @@ -181,7 +181,7 @@ func (e *externalInfo) findMatchingTrack(ctx context.Context, mbid string, artis }, squirrel.Like{"title": title}, }, - Sort: "year", + Sort: "starred desc, rating desc, year asc", }) if err != nil || len(mfs) == 0 { return nil, model.ErrNotFound