Fix #1588: fetchart gets PNGs, not GIFs

This commit is contained in:
Adrian Sampson 2015-09-02 12:45:35 -07:00
parent 086b97173b
commit 854a4539cb
2 changed files with 4 additions and 1 deletions

View file

@ -38,7 +38,7 @@ except ImportError:
HAVE_ITUNES = False
IMAGE_EXTENSIONS = ['png', 'jpg', 'jpeg']
CONTENT_TYPES = ('image/jpeg', 'image/gif')
CONTENT_TYPES = ('image/jpeg', 'image/png')
DOWNLOAD_EXTENSION = '.jpg'

View file

@ -30,6 +30,9 @@ Fixes:
option.
* The :ref:`list-cmd` command's help output now has a small query and format
string example. Thanks to :user:`pkess`. :bug:`1582`
* :doc:`/plugins/fetchart`: The plugin now fetches PNGs but not GIFs. (It
still fetches JPEGs.) This avoids an error when trying to embed images,
since not all formats support GIFs. :bug:`1588`
1.3.14 (August 2, 2015)