Fix bug in scraping podcasts

This commit is contained in:
2023-03-22 23:22:23 -04:00
parent 2d50964971
commit fd23928922

View File

@ -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: