From fd23928922b4bc684dd3b82ee67ee45fe7a20f1d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 22 Mar 2023 23:22:23 -0400 Subject: [PATCH] Fix bug in scraping podcasts --- vrobbler/apps/podcasts/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/podcasts/models.py b/vrobbler/apps/podcasts/models.py index 0f7103c..f5e80f6 100644 --- a/vrobbler/apps/podcasts/models.py +++ b/vrobbler/apps/podcasts/models.py @@ -40,7 +40,7 @@ class Podcast(TimeStampedModel): def scrape_google_podcasts(self, force=False): podcast_dict = {} - if not self.cover or force: + if not self.cover_image or force: podcast_dict = scrape_data_from_google_podcasts(self.name) if podcast_dict: if not self.producer: