diff --git a/picard/coverartimage.py b/picard/coverartimage.py index c1d5fa0bd..903521a6d 100644 --- a/picard/coverartimage.py +++ b/picard/coverartimage.py @@ -320,6 +320,11 @@ class CaaCoverArtImage(CoverArtImage): support_types = True sourceprefix = u"CAA" + def __init__(self, url, types=[], is_front=False, comment='', data=None): + CoverArtImage.__init__(self, url=url, types=types, comment=comment, + data=data) + self.is_front = is_front + class TagCoverArtImage(CoverArtImage):