mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Added changelog and additional error handling
This commit is contained in:
parent
17d1a431bc
commit
1c21821f4a
2 changed files with 3 additions and 1 deletions
|
|
@ -986,7 +986,7 @@ class CoverArtUrl(RemoteArtSource):
|
||||||
image_url = None
|
image_url = None
|
||||||
try:
|
try:
|
||||||
image_url = album.items().get().cover_art_url
|
image_url = album.items().get().cover_art_url
|
||||||
except AttributeError:
|
except (AttributeError, TypeError):
|
||||||
self._log.debug('Cover art URL not found for {0}', album)
|
self._log.debug('Cover art URL not found for {0}', album)
|
||||||
return
|
return
|
||||||
if image_url:
|
if image_url:
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,8 @@ for Python 3.6).
|
||||||
|
|
||||||
New features:
|
New features:
|
||||||
|
|
||||||
|
* Added option use `cover_art_arl` as an album art source in the `fetchart` plugin.
|
||||||
|
:bug:`4707`
|
||||||
* :doc:`/plugins/fetchart`: The plugin can now get album art from `spotify`.
|
* :doc:`/plugins/fetchart`: The plugin can now get album art from `spotify`.
|
||||||
* Added option to specify a URL in the `embedart` plugin.
|
* Added option to specify a URL in the `embedart` plugin.
|
||||||
:bug:`83`
|
:bug:`83`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue