common api: add some missing IR bits for listen activities' children

This commit is contained in:
Ariadne Conill 2019-09-28 12:29:00 +00:00
parent 84712c35f9
commit 8b34b221cb
1 changed files with 2 additions and 1 deletions

View File

@ -219,7 +219,8 @@ defmodule Pleroma.Web.CommonAPI do
Map.take(data, ["album", "artist", "title", "length"]) Map.take(data, ["album", "artist", "title", "length"])
|> Map.put("type", "Audio") |> Map.put("type", "Audio")
|> Map.put("to", to) |> Map.put("to", to)
|> Map.put("cc", cc), |> Map.put("cc", cc)
|> Map.put("actor", user.ap_id),
{:ok, activity} <- {:ok, activity} <-
ActivityPub.listen(%{ ActivityPub.listen(%{
actor: user, actor: user,