diff --git a/odyseescraper/models.py b/odyseescraper/models.py index d3f61fb..5fcee9b 100644 --- a/odyseescraper/models.py +++ b/odyseescraper/models.py @@ -64,4 +64,5 @@ class OdyseeRelease(models.Model): def all_tags(self): self_tags = self.tags.all() channel_tags = self.channel.tags.all() - return self_tags | channel_tags + cumulative_tags = self_tags | channel_tags + return cumulative_tags