We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1ca91e commit a00187eCopy full SHA for a00187e
podcasts/models.py
@@ -71,8 +71,8 @@ class Podcast(models.Model):
71
height_field="itunes_image_height",
72
width_field="itunes_image_width",
73
)
74
- itunes_image_height = models.PositiveIntegerField()
75
- itunes_image_width = models.PositiveIntegerField()
+ itunes_image_height = models.PositiveIntegerField(blank=True, null=True, default=None)
+ itunes_image_width = models.PositiveIntegerField(blank=True, null=True, default=None)
76
itunes_primary_category = models.ForeignKey(
77
iTunesCategory, on_delete=models.PROTECT,
78
related_name="+",
0 commit comments