mirror of
https://github.com/beetbox/beets.git
synced 2026-01-07 16:34:45 +01:00
Merge pull request #2735 from Vrihub/2734-candidates-fetchart
Tentative fix for issue 2734: also check for RETAG
This commit is contained in:
commit
8ca271773b
2 changed files with 4 additions and 1 deletions
|
|
@ -783,7 +783,8 @@ class FetchArtPlugin(plugins.BeetsPlugin, RequestMixin):
|
|||
if task.choice_flag == importer.action.ASIS:
|
||||
# For as-is imports, don't search Web sources for art.
|
||||
local = True
|
||||
elif task.choice_flag == importer.action.APPLY:
|
||||
elif task.choice_flag in (importer.action.APPLY,
|
||||
importer.action.RETAG):
|
||||
# Search everywhere for art.
|
||||
local = False
|
||||
else:
|
||||
|
|
|
|||
|
|
@ -65,6 +65,8 @@ Fixes:
|
|||
gstreamer backend. :bug:`2636`
|
||||
* :doc:`/plugins/scrub`: Handle errors when manipulating files using newer
|
||||
versions of Mutagen. :bug:`2716`
|
||||
* :doc:`/plugins/fetchart`: Fix: don't skip running the fetchart plugin during import, when the
|
||||
"Edit Candidates" option is used. :bug:`2734`
|
||||
|
||||
For developers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue