mirror of
https://github.com/beetbox/beets.git
synced 2025-12-26 18:43:38 +01:00
Search again locally in album folder when running beet fetchart without -f
This commit is contained in:
parent
0458d16e71
commit
0466df6215
1 changed files with 2 additions and 1 deletions
|
|
@ -212,7 +212,8 @@ def batch_fetch_art(lib, albums, force, maxwidth=None):
|
|||
if album.artpath and not force:
|
||||
message = 'has album art'
|
||||
else:
|
||||
path = art_for_album(album, None, maxwidth)
|
||||
lookuppath = None if force else [album.path]
|
||||
path = art_for_album(album, lookuppath, maxwidth)
|
||||
|
||||
if path:
|
||||
album.set_art(path, False)
|
||||
|
|
|
|||
Loading…
Reference in a new issue