Fix duplicate detector missing cross-album duplicates (#252)
Changed ignore_cross_album default from True to False. Re-downloads of the same song create separate album entries, so the detector was skipping them. Users who want to keep compilations/greatest-hits intact can toggle it back on. Updated help text to explain when to use this setting.
This commit is contained in:
parent
a2b9e32d04
commit
455945e6cb
1 changed files with 4 additions and 3 deletions
|
|
@ -25,8 +25,9 @@ class DuplicateDetectorJob(RepairJob):
|
||||||
'Settings:\n'
|
'Settings:\n'
|
||||||
'- Title Similarity: How closely titles must match to be considered duplicates (0.0 - 1.0)\n'
|
'- Title Similarity: How closely titles must match to be considered duplicates (0.0 - 1.0)\n'
|
||||||
'- Artist Similarity: How closely artist names must match (0.0 - 1.0)\n'
|
'- Artist Similarity: How closely artist names must match (0.0 - 1.0)\n'
|
||||||
'- Ignore Cross-Album: When enabled, tracks on different albums are not flagged as duplicates '
|
'- Ignore Cross-Album: When enabled, tracks on different albums are not flagged as duplicates. '
|
||||||
'(keeps your albums complete even if the same song appears on multiple albums)'
|
'Turn this OFF if you have duplicate downloads filed under different album entries — '
|
||||||
|
'this is the most common cause of missed duplicates from re-downloads'
|
||||||
)
|
)
|
||||||
icon = 'repair-icon-duplicate'
|
icon = 'repair-icon-duplicate'
|
||||||
default_enabled = False
|
default_enabled = False
|
||||||
|
|
@ -34,7 +35,7 @@ class DuplicateDetectorJob(RepairJob):
|
||||||
default_settings = {
|
default_settings = {
|
||||||
'title_similarity': 0.85,
|
'title_similarity': 0.85,
|
||||||
'artist_similarity': 0.80,
|
'artist_similarity': 0.80,
|
||||||
'ignore_cross_album': True,
|
'ignore_cross_album': False,
|
||||||
}
|
}
|
||||||
auto_fix = False
|
auto_fix = False
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue