forked from AkkomaGang/akkoma
Return error message on errors
This commit is contained in:
parent
813d2eaaf0
commit
11d2287476
1 changed files with 4 additions and 1 deletions
|
@ -275,7 +275,10 @@ def follow(%{assigns: %{user: follower}} = conn, params) do
|
||||||
{:ok, activity} <- ActivityPub.follow(follower, followed) do
|
{:ok, activity} <- ActivityPub.follow(follower, followed) do
|
||||||
render conn, AccountView, "relationship.json", %{user: follower, target: followed}
|
render conn, AccountView, "relationship.json", %{user: follower, target: followed}
|
||||||
else
|
else
|
||||||
err -> err
|
{:error, message} = err ->
|
||||||
|
conn
|
||||||
|
|> put_resp_content_type("application/json")
|
||||||
|
|> send_resp(403, Poison.encode!(%{"error" => message}))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue