activitypub: transmogrifier: ensure we send nested object in Create

This commit is contained in:
William Pitcock 2018-11-25 22:11:10 +00:00
parent d6e65f9304
commit cf139e3eec
1 changed files with 2 additions and 2 deletions

View File

@ -616,9 +616,9 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
# internal -> Mastodon
# """
def prepare_outgoing(%{"type" => "Create", "object" => %{"type" => "Note"} = object} = data) do
def prepare_outgoing(%{"type" => "Create", "object" => object_id} = data) do
object =
object
Object.normalize(object_id).data
|> prepare_object
data =