mirror of
https://github.com/beetbox/beets.git
synced 2026-01-15 20:51:38 +01:00
Set default data_source_penalty to 0.0
This commit is contained in:
parent
60e0efb8ea
commit
e6084cd3ee
2 changed files with 2 additions and 2 deletions
|
|
@ -152,7 +152,7 @@ class MetadataSourcePlugin(BeetsPlugin, metaclass=abc.ABCMeta):
|
|||
self.config.add(
|
||||
{
|
||||
"search_limit": 5,
|
||||
"data_source_mismatch_penalty": 0.5,
|
||||
"data_source_mismatch_penalty": 0.0,
|
||||
}
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ Some plugins provide sources for metadata in addition to MusicBrainz. These
|
|||
plugins share the following configuration option:
|
||||
|
||||
- **data_source_mismatch_penalty**: Penalty applied to matches during import.
|
||||
Set to 0.0 to disable. Default: ``0.5``.
|
||||
Set to 0.0 to disable. Default: ``0.0``.
|
||||
|
||||
For example, to equally consider matches from Discogs and MusicBrainz add the
|
||||
following to your configuration:
|
||||
|
|
|
|||
Loading…
Reference in a new issue