From 0466df621503d27a5d28e809e8f75b719f96f782 Mon Sep 17 00:00:00 2001 From: Bruno Tournay Date: Mon, 27 Jan 2014 22:02:29 +0100 Subject: [PATCH] Search again locally in album folder when running beet fetchart without -f --- beetsplug/fetchart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 61361f169..d9e372f53 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -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)