Ignore unknown create/update types

pull/569/head
Christof Dorner 2023-05-04 22:29:38 +02:00
rodzic dbc25f538d
commit d0022c6587
1 zmienionych plików z 0 dodań i 8 usunięć

Wyświetl plik

@ -42,10 +42,6 @@ class InboxMessageStates(StateGraph):
case unknown:
if unknown in Post.Types.names:
await sync_to_async(Post.handle_create_ap)(instance.message)
else:
raise ValueError(
f"Cannot handle activity of type create.{unknown}"
)
case "update":
match instance.message_object_type:
case "note":
@ -65,10 +61,6 @@ class InboxMessageStates(StateGraph):
case unknown:
if unknown in Post.Types.names:
await sync_to_async(Post.handle_update_ap)(instance.message)
else:
raise ValueError(
f"Cannot handle activity of type update.{unknown}"
)
case "accept":
match instance.message_object_type:
case "follow":