activitypub: transmogrifier: ensure we send nested object in Create
This commit is contained in:
parent
d6e65f9304
commit
cf139e3eec
1 changed files with 2 additions and 2 deletions
|
@ -616,9 +616,9 @@ def prepare_object(object) 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 =
|
||||
|
|
Loading…
Reference in a new issue