소스 검색

Fix bug in scraping podcasts

Colin Powell 2 년 전
부모
커밋
fd23928922
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      vrobbler/apps/podcasts/models.py

+ 1 - 1
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: