mirror of
https://github.com/beetbox/beets.git
synced 2026-02-26 09:11:32 +01:00
don't fetch art when importing as-is
This commit is contained in:
parent
6c0895de96
commit
c62b1355f1
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ def tag_album(items, lib, copy=True, write=True, logfile=None, art=True):
|
|||
albuminfo = lib.add_album(items)
|
||||
|
||||
# Get album art if requested.
|
||||
if art:
|
||||
if art and info is not CHOICE_ASIS:
|
||||
artpath = beets.autotag.art.art_for_album(info)
|
||||
if artpath:
|
||||
albuminfo.set_art(artpath)
|
||||
|
|
|
|||
Loading…
Reference in a new issue