Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-03-29 20:56:15 -04:00
parent 73efeab927
commit 2e7eaa2543

View file

@ -388,8 +388,8 @@ func (e *provider) getMatchingTopSongs(ctx context.Context, agent agents.ArtistT
log.Debug(ctx, "Found matching top songs", "name", artist.Name, "numSongs", len(mfs))
// Special case for the tests: return nil when the agent returns an error
if len(mfs) == 0 && err != nil {
// If no matching songs were found, return empty result
if len(mfs) == 0 {
return nil, nil
}