SideEffects: Use less cryptic syntax.

This commit is contained in:
lain 2020-04-22 21:21:21 +02:00
parent e62173dfc8
commit 1bcbdc7a9f
1 changed files with 9 additions and 7 deletions

View File

@ -15,6 +15,7 @@ def handle(object, meta \\ [])
# - Add like to object
# - Set up notification
def handle(%{data: %{"type" => "Like"}} = object, meta) do
{:ok, result} =
Pleroma.Repo.transaction(fn ->
liked_object = Object.get_by_ap_id(object.data["object"])
Utils.add_like_to_object(object, liked_object)
@ -23,7 +24,8 @@ def handle(%{data: %{"type" => "Like"}} = object, meta) do
{:ok, object, meta}
end)
|> (fn {:ok, res} -> res end).()
result
end
# Nothing to do