Synchronise docs with the actual supported extra_tags

This commit is contained in:
Šarūnas Nejus 2025-05-18 09:46:40 +01:00
parent be74936134
commit 6487893315
No known key found for this signature in database
GPG key ID: DD28F6704DBE3435
3 changed files with 3 additions and 3 deletions

View file

@ -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",
}

View file

@ -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.

View file

@ -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,