mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 03:52:51 +01:00
Merge pull request #4299 from Neurrone/fix/dont-deduplicate-results-when-musicbrainz-id-is-not-set
fix: dont deduplicate matches if musicbrainz ID is not set for album matches
This commit is contained in:
commit
bd7793211c
2 changed files with 5 additions and 2 deletions
|
|
@ -357,8 +357,8 @@ def _add_candidate(items, results, info):
|
|||
log.debug('No tracks.')
|
||||
return
|
||||
|
||||
# Don't duplicate.
|
||||
if info.album_id in results:
|
||||
# Prevent duplicates.
|
||||
if info.album_id and info.album_id in results:
|
||||
log.debug('Duplicate.')
|
||||
return
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,9 @@ New features:
|
|||
|
||||
Bug fixes:
|
||||
|
||||
* The autotagger no longer considers all matches without a MusicBrainz ID as
|
||||
duplicates of each other.
|
||||
:bug:`4299`
|
||||
* :doc:`/plugins/convert`: Resize album art when embedding
|
||||
:bug:`2116`
|
||||
* :doc:`/plugins/deezer`: Fix auto tagger pagination issues (fetch beyond the
|
||||
|
|
|
|||
Loading…
Reference in a new issue