mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
fix recommendation with MBID-based match
This commit is contained in:
parent
c00dce80e8
commit
22f8a5acf9
1 changed files with 1 additions and 1 deletions
|
|
@ -482,7 +482,7 @@ def tag_album(items, search_artist=None, search_album=None):
|
|||
# If we have a very good MBID match, return immediately.
|
||||
# Otherwise, this match will compete against metadata-based
|
||||
# matches.
|
||||
rec = recommendation(out_tuples)
|
||||
rec = recommendation(out_tuples.values())
|
||||
if rec == RECOMMEND_STRONG:
|
||||
log.debug('ID match.')
|
||||
return cur_artist, cur_album, out_tuples.values(), rec
|
||||
|
|
|
|||
Loading…
Reference in a new issue