Minor tweak to tag syntax

This commit is contained in:
Salt 2025-01-24 19:52:25 -06:00
parent bed8a87e8e
commit 85009e0550

View File

@ -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