Return error message on errors

This commit is contained in:
eal 2017-10-25 21:25:37 +03:00
parent 813d2eaaf0
commit 11d2287476
1 changed files with 4 additions and 1 deletions

View File

@ -275,7 +275,10 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
{:ok, activity} <- ActivityPub.follow(follower, followed) do
render conn, AccountView, "relationship.json", %{user: follower, target: followed}
else
err -> err
{:error, message} = err ->
conn
|> put_resp_content_type("application/json")
|> send_resp(403, Poison.encode!(%{"error" => message}))
end
end