SideEffects: Use less cryptic syntax.

This commit is contained in:
lain 2020-04-22 21:21:21 +02:00
parent e62173dfc8
commit 1bcbdc7a9f

View file

@ -15,15 +15,17 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do
# - Add like to object
# - Set up notification
def handle(%{data: %{"type" => "Like"}} = object, meta) do
Pleroma.Repo.transaction(fn ->
liked_object = Object.get_by_ap_id(object.data["object"])
Utils.add_like_to_object(object, liked_object)
{:ok, result} =
Pleroma.Repo.transaction(fn ->
liked_object = Object.get_by_ap_id(object.data["object"])
Utils.add_like_to_object(object, liked_object)
Notification.create_notifications(object)
Notification.create_notifications(object)
{:ok, object, meta}
end)
|> (fn {:ok, res} -> res end).()
{:ok, object, meta}
end)
result
end
# Nothing to do