Pass args and kwargs through status deletion

This commit is contained in:
Mouse Reeve 2023-11-05 08:10:03 -08:00
parent 93a7dd9cf3
commit 5e42afd85a

View file

@ -102,7 +102,7 @@ class Status(OrderedCollectionPageMixin, BookWyrmModel):
if hasattr(self, "quotation"):
self.quotation = None # pylint: disable=attribute-defined-outside-init
self.deleted_date = timezone.now()
self.save()
self.save(*args, **kwargs)
@property
def recipients(self):