From 77ce69fe77621c09c80a16205b29c298e1d08630 Mon Sep 17 00:00:00 2001 From: John Hamelink Date: Tue, 19 Jan 2021 22:05:34 +0000 Subject: [PATCH] Fixes #3834: This PR fixes a bug (#3834) where tracks which have already been fingerprinted do not return to be used by `beet submit` (part of the Chroma plugin). This results in submission errors, as the fingerprint is omitted from the resultant payload sent to acoustID. --- beetsplug/chroma.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/chroma.py b/beetsplug/chroma.py index 20d0f5479..91f2fe253 100644 --- a/beetsplug/chroma.py +++ b/beetsplug/chroma.py @@ -329,7 +329,7 @@ def fingerprint_item(log, item, write=False): else: log.info(u'{0}: using existing fingerprint', util.displayable_path(item.path)) - return item.acoustid_fingerprint + return item.acoustid_fingerprint else: log.info(u'{0}: fingerprinting', util.displayable_path(item.path))