Set album art type attribute to front cover for FLAC

This commit is contained in:
Jason Lefley 2014-02-21 16:09:41 -08:00
parent c196f20dfc
commit c0f97bdc06

View file

@ -815,6 +815,7 @@ class ImageField(object):
if val is not None:
pic = mutagen.flac.Picture()
pic.data = val
pic.type = 3 # Front cover.
pic.mime = self._mime(val)
obj.mgfile.add_picture(pic)