Make genre optional

This commit is contained in:
2023-04-17 22:33:36 -04:00
parent f21650505c
commit 5c3a554010
9 changed files with 213 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class ScrobblableMixin(TimeStampedModel):
run_time_seconds = models.IntegerField(**BNULL)
run_time_ticks = models.PositiveBigIntegerField(**BNULL)
genre = TaggableManager(through=ObjectWithGenres)
genre = TaggableManager(through=ObjectWithGenres, blank=True)
class Meta:
abstract = True