transmogrifier: accept Article activities
This commit is contained in:
parent
d386e8a825
commit
c42f28b82c
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ def fix_content_map(object), do: object
|
|||
# TODO: validate those with a Ecto scheme
|
||||
# - tags
|
||||
# - emoji
|
||||
def handle_incoming(%{"type" => "Create", "object" => %{"type" => "Note"} = object} = data) do
|
||||
def handle_incoming(%{"type" => "Create", "object" => %{"type" => objtype} = object} = data) when objtype in ["Article", "Note"] do
|
||||
with nil <- Activity.get_create_activity_by_object_ap_id(object["id"]),
|
||||
%User{} = user <- User.get_or_fetch_by_ap_id(data["actor"]) do
|
||||
object = fix_object(data["object"])
|
||||
|
|
Loading…
Reference in a new issue