AcitvityPub: Outgoing Announces.

This commit is contained in:
lain 2018-02-17 20:47:45 +01:00
parent 32b995fbb6
commit 0f2ad25a7b
2 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
{:ok, data}
end
def prepare_outgoing(%{"type" => type} = data) when type in ["Follow", "Accept", "Like"] do
def prepare_outgoing(%{"type" => type} = data) when type in ["Follow", "Accept", "Like", "Announce"] do
data = data
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")

View File

@ -21,6 +21,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
}
additional = Map.take(object.data, ["id", "to", "cc", "actor", "content", "summary", "type"])
|> Map.put("attributedTo", object.data["actor"])
Map.merge(base, additional)
end
end