fix multi-after-transaction

This commit is contained in:
FloatingGhost 2021-12-12 19:40:05 +00:00
parent dbdf0c005e
commit 71126fea0c

View file

@ -536,7 +536,6 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do
|> Keyword.put(:notifications, notifications ++ existing) |> Keyword.put(:notifications, notifications ++ existing)
end end
@impl true
@impl true @impl true
def handle_after_transaction(%{data: %{"type" => "Create"}} = activity) do def handle_after_transaction(%{data: %{"type" => "Create"}} = activity) do
Elasticsearch.put_by_id(activity.id) Elasticsearch.put_by_id(activity.id)
@ -547,6 +546,4 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do
|> send_notifications() |> send_notifications()
|> send_streamables() |> send_streamables()
end end
def handle_after_transaction(_), do: :ok
end end