mirror of
https://github.com/beetbox/beets.git
synced 2026-02-27 09:41:51 +01:00
Add catalognumber to disambiguation string
when selecting candidates
This commit is contained in:
parent
3ede5f26c8
commit
38b36a92de
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