diff --git a/vrobbler/apps/podcasts/models.py b/vrobbler/apps/podcasts/models.py index 5a3ca14..4abd16c 100644 --- a/vrobbler/apps/podcasts/models.py +++ b/vrobbler/apps/podcasts/models.py @@ -80,8 +80,8 @@ class Episode(ScrobblableMixin): @property def primary_image_url(self) -> str: url = "" - if self.podcast.cover: - url = self.podcast.cover.url + if self.podcast.cover_image: + url = self.podcast.cover_image.url return url @classmethod