diff --git a/users/models/inbox_message.py b/users/models/inbox_message.py index 88a9e65..2b4e816 100644 --- a/users/models/inbox_message.py +++ b/users/models/inbox_message.py @@ -109,9 +109,8 @@ class InboxMessageStates(StateGraph): ).aexists(): await sync_to_async(Post.handle_delete_ap)(instance.message) else: - raise ValueError( - f"Cannot handle activity of type delete on URI {instance.message['object']}" - ) + # It is presumably already deleted + pass else: match instance.message_object_type: case "tombstone":