mirror of
https://github.com/beetbox/beets.git
synced 2026-02-13 10:51:59 +01:00
turn on infer_aa in appropriate situations
This commit is contained in:
parent
4ab74d9a69
commit
d59c66af6a
1 changed files with 2 additions and 2 deletions
|
|
@ -479,7 +479,7 @@ def apply_choices(lib, copy, write, art, delete, progress):
|
|||
|
||||
# Add items to library. We consolidate this at the end to avoid
|
||||
# locking while we do the copying and tag updates.
|
||||
albuminfo = lib.add_album(items)
|
||||
albuminfo = lib.add_album(items, infer_aa = (info is CHOICE_ASIS))
|
||||
|
||||
# Get album art if requested.
|
||||
if art and info is not CHOICE_ASIS:
|
||||
|
|
@ -519,7 +519,7 @@ def simple_import(lib, paths, copy, delete, progress):
|
|||
for item in items:
|
||||
item.move(lib, True)
|
||||
|
||||
album = lib.add_album(items)
|
||||
album = lib.add_album(items, True)
|
||||
lib.save()
|
||||
if progress:
|
||||
progress_set(toppath, path)
|
||||
|
|
|
|||
Loading…
Reference in a new issue