diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 1896552bf..7db05583b 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -142,6 +142,8 @@ class ITunesStore(ArtSource): def get(self, album): """Return art URL from iTunes Store given an album title. """ + if not (album.albumartist and album.album): + return search_string = (album.albumartist + ' ' + album.album).encode('utf-8') try: # Isolate bugs in the iTunes library while searching.