mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
Merge pull request #2951 from 8h2a/disambig_catalognum
Add catalognumber to disambiguation string (when selecting candidates)
This commit is contained in:
commit
8a89173906
1 changed files with 2 additions and 0 deletions
2
beets/ui/commands.py
Normal file → Executable file
2
beets/ui/commands.py
Normal file → Executable file
|
|
@ -172,6 +172,8 @@ def disambig_string(info):
|
|||
disambig.append(info.country)
|
||||
if info.label:
|
||||
disambig.append(info.label)
|
||||
if info.catalognum:
|
||||
disambig.append(info.catalognum)
|
||||
if info.albumdisambig:
|
||||
disambig.append(info.albumdisambig)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue