mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-26 19:41:11 +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"):
|
if hasattr(self, "quotation"):
|
||||||
self.quotation = None # pylint: disable=attribute-defined-outside-init
|
self.quotation = None # pylint: disable=attribute-defined-outside-init
|
||||||
self.deleted_date = timezone.now()
|
self.deleted_date = timezone.now()
|
||||||
self.save()
|
self.save(*args, **kwargs)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def recipients(self):
|
def recipients(self):
|
||||||
|
|
Loading…
Reference in a new issue