mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Synchronise docs with the actual supported extra_tags
This commit is contained in:
parent
be74936134
commit
6487893315
3 changed files with 3 additions and 3 deletions
|
|
@ -45,10 +45,10 @@ BASE_URL = "https://musicbrainz.org/"
|
|||
SKIPPED_TRACKS = ["[data track]"]
|
||||
|
||||
FIELDS_TO_MB_KEYS = {
|
||||
"barcode": "barcode",
|
||||
"catalognum": "catno",
|
||||
"country": "country",
|
||||
"label": "label",
|
||||
"barcode": "barcode",
|
||||
"media": "format",
|
||||
"year": "date",
|
||||
}
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ MusicBrainz. Additional tags to be queried can be supplied with the
|
|||
.. code-block:: yaml
|
||||
|
||||
musicbrainz:
|
||||
extra_tags: [year, catalognum, country, media, label]
|
||||
extra_tags: [barcode, catalognum, country, label, media, year]
|
||||
|
||||
This setting should improve the autotagger results if the metadata with the
|
||||
given tags match the metadata returned by MusicBrainz.
|
||||
|
|
|
|||
|
|
@ -1081,7 +1081,7 @@ class TestMusicBrainzPlugin(PluginMixin):
|
|||
"plugin_config,va_likely,expected_additional_criteria",
|
||||
[
|
||||
({}, False, {"artist": "artist"}),
|
||||
({}, True, {"artist": "artist"}),
|
||||
({}, True, {"arid": "89ad4ac3-39f7-470e-963a-56509c546377"}),
|
||||
(
|
||||
{"extra_tags": ["label", "catalognum"]},
|
||||
False,
|
||||
|
|
|
|||
Loading…
Reference in a new issue