Don't save duplicate boosts
This commit is contained in:
parent
9148f36719
commit
b457446f2f
2 changed files with 10 additions and 4 deletions
|
@ -204,10 +204,8 @@ class ObjectMixin(ActivitypubMixin):
|
|||
created = created or not bool(self.id)
|
||||
# first off, we want to save normally no matter what
|
||||
super().save(*args, **kwargs)
|
||||
if (
|
||||
not broadcast
|
||||
or hasattr(self, "status_type")
|
||||
and self.status_type == "Announce"
|
||||
if not broadcast or (
|
||||
hasattr(self, "status_type") and self.status_type == "Announce"
|
||||
):
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue