Skip to content

Commit

Permalink
PICARD-801: fix CoverArtProviderCaaReleaseGroup.enabled()
Browse files Browse the repository at this point in the history
The method is using super(CoverArtProviderCaaReleaseGroup, self).enabled() which
is wrong, causing it to be skipped when CAA release has no cover artwork available.
  • Loading branch information
zas committed Mar 11, 2016
1 parent d3930a6 commit 4d82e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picard/coverart/providers/caa_release_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class CoverArtProviderCaaReleaseGroup(CoverArtProviderCaa):
coverartimage_thumbnail_class = CaaThumbnailCoverArtImageRg

def enabled(self):
return (super(CoverArtProviderCaaReleaseGroup, self).enabled()
return (super(CoverArtProviderCaa, self).enabled()
and not self.coverart.front_image_found)

@property
Expand Down

0 comments on commit 4d82e9b

Please sign in to comment.