Added changelog and additional error handling

This commit is contained in:
Alok Saboo 2023-05-02 08:22:54 -04:00
parent 17d1a431bc
commit 1c21821f4a
2 changed files with 3 additions and 1 deletions

View file

@ -986,7 +986,7 @@ class CoverArtUrl(RemoteArtSource):
image_url = None
try:
image_url = album.items().get().cover_art_url
except AttributeError:
except (AttributeError, TypeError):
self._log.debug('Cover art URL not found for {0}', album)
return
if image_url:

View file

@ -11,6 +11,8 @@ for Python 3.6).
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`.
* Added option to specify a URL in the `embedart` plugin.
:bug:`83`