mirror of
https://github.com/beetbox/beets.git
synced 2026-01-14 20:24:36 +01:00
fix checksum problem where key was unintentionally hard-coded
This commit is contained in:
parent
bb6372abfd
commit
6d283ecafa
1 changed files with 1 additions and 1 deletions
|
|
@ -204,7 +204,7 @@ class DuplicatesPlugin(BeetsPlugin):
|
|||
if checksum:
|
||||
for i in items:
|
||||
k, _ = _checksum(i, checksum)
|
||||
keys = ['k']
|
||||
keys = [k]
|
||||
|
||||
for obj_id, obj_count, objs in _duplicates(items,
|
||||
keys=keys,
|
||||
|
|
|
|||
Loading…
Reference in a new issue