Also capture unknown message types

This commit is contained in:
Andrew Godwin 2023-07-07 16:33:55 -06:00
parent 4458594f04
commit 2fda9ad2b4

View file

@ -154,7 +154,7 @@ class InboxMessageStates(StateGraph):
f"Cannot handle activity of type __internal__.{unknown}"
)
case unknown:
raise ValueError(f"Cannot handle activity of type {unknown}")
return cls.errored
return cls.processed
except (ActivityPubError, JsonLdError):
return cls.errored