Send Delete activity, not Tombstone on deletion

This commit is contained in:
Mouse Reeve
2020-10-31 10:39:42 -07:00
parent 72219ace77
commit 301a452d9f
3 changed files with 15 additions and 2 deletions

View File

@ -204,7 +204,7 @@ def handle_imported_book(user, item, include_reviews, privacy):
def handle_delete_status(user, status):
''' delete a status and broadcast deletion to other servers '''
delete_status(status)
broadcast(user, status.to_activity())
broadcast(user, status.to_delete_activity(user))
def handle_status(user, form):