Skip to content

Commit

Permalink
Fix #1588: fetchart gets PNGs, not GIFs
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed Sep 2, 2015
1 parent 086b971 commit 854a453
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion beetsplug/fetchart.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
HAVE_ITUNES = False

IMAGE_EXTENSIONS = ['png', 'jpg', 'jpeg']
CONTENT_TYPES = ('image/jpeg', 'image/gif')
CONTENT_TYPES = ('image/jpeg', 'image/png')
DOWNLOAD_EXTENSION = '.jpg'


Expand Down
3 changes: 3 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 854a453

Please sign in to comment.