summaryrefslogtreecommitdiffstats
path: root/users/models/inbox_message.py
diff options
context:
space:
mode:
Diffstat (limited to 'users/models/inbox_message.py')
-rw-r--r--users/models/inbox_message.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/models/inbox_message.py b/users/models/inbox_message.py
index fc81d71..a73166a 100644
--- a/users/models/inbox_message.py
+++ b/users/models/inbox_message.py
@@ -67,7 +67,7 @@ class InboxMessageStates(StateGraph):
case "delete":
# If there is no object type, it's probably a profile
if not isinstance(instance.message["object"], dict):
- raise ValueError("Cannot handle activity of type delete")
+ await sync_to_async(Identity.handle_delete_ap)(instance.message)
match instance.message_object_type:
case "tombstone":
await sync_to_async(Post.handle_delete_ap)(instance.message)