utils: make_create_data: add support for Article objects

This commit is contained in:
William Pitcock 2018-06-24 06:52:17 +00:00
parent c42f28b82c
commit bd479606ba
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ defmodule Pleroma.Web.ActivityPub.Utils do
Inserts a full object if it is contained in an activity.
"""
def insert_full_object(%{"object" => %{"type" => type} = object_data})
when is_map(object_data) and type in ["Note"] do
when is_map(object_data) and type in ["Article", "Note"] do
with {:ok, _} <- Object.create(object_data) do
:ok
end