mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-23 01:51:08 +00:00
Pass args and kwargs through status deletion
This commit is contained in:
parent
93a7dd9cf3
commit
5e42afd85a
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue