From 85009e05508194e64e5f8e898b2b1479174be368 Mon Sep 17 00:00:00 2001 From: Jacob Babor Date: Fri, 24 Jan 2025 19:52:25 -0600 Subject: [PATCH] Minor tweak to tag syntax --- odyseescraper/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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